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