blob: bc1986f2efa3153aeaac9237e54e731b8d384b17 (
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
{
}
|