blob: dd42662018c14ba11cd2a8721915bf6565816bff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace Stripe\Exception\OAuth;
/**
* The base interface for all Stripe OAuth exceptions.
*/
interface ExceptionInterface extends \Stripe\Exception\ExceptionInterface
{
}
|