| 1 | <?php |
| 2 | |
| 3 | namespace Stripe\Exception\OAuth; |
| 4 | |
| 5 | /** |
| 6 | * UnknownApiErrorException is thrown when the client library receives an |
| 7 | * error from the OAuth API it doesn't know about. Receiving this error usually |
| 8 | * means that your client library is outdated and should be upgraded. |
| 9 | */ |
| 10 | class UnknownOAuthErrorException extends OAuthErrorException |
| 11 | { |
| 12 | } |
| 13 |