11 lines
193 B
PHP
11 lines
193 B
PHP
|
<?php
|
||
|
|
||
|
namespace Stripe\Exception\OAuth;
|
||
|
|
||
|
/**
|
||
|
* The base interface for all Stripe OAuth exceptions.
|
||
|
*/
|
||
|
interface ExceptionInterface extends \Stripe\Exception\ExceptionInterface
|
||
|
{
|
||
|
}
|