wp-user-avatar
/
third-party
/
vendor
/
stripe
/
stripe-php
/
lib
/
Exception
/
UnknownApiErrorException.php
OAuth
2 months ago
ApiConnectionException.php
2 months ago
ApiErrorException.php
2 months ago
AuthenticationException.php
2 months ago
BadMethodCallException.php
2 months ago
CardException.php
2 months ago
ExceptionInterface.php
2 months ago
IdempotencyException.php
2 months ago
InvalidArgumentException.php
2 months ago
InvalidRequestException.php
2 months ago
PermissionException.php
2 months ago
RateLimitException.php
2 months ago
SignatureVerificationException.php
2 months ago
TemporarySessionExpiredException.php
2 months ago
UnexpectedValueException.php
2 months ago
UnknownApiErrorException.php
2 months ago
UnknownApiErrorException.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePressVendor\Stripe\Exception; |
| 4 | |
| 5 | /** |
| 6 | * UnknownApiErrorException is thrown when the client library receives an |
| 7 | * error from the 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 UnknownApiErrorException extends ApiErrorException |
| 11 | { |
| 12 | } |
| 13 |