OAuth
6 months ago
ApiConnectionException.php
6 months ago
ApiErrorException.php
6 months ago
AuthenticationException.php
6 months ago
BadMethodCallException.php
6 months ago
CardException.php
6 months ago
ExceptionInterface.php
6 months ago
IdempotencyException.php
6 months ago
InvalidArgumentException.php
6 months ago
InvalidRequestException.php
6 months ago
PermissionException.php
6 months ago
RateLimitException.php
6 months ago
SignatureVerificationException.php
6 months ago
TemporarySessionExpiredException.php
6 months ago
UnexpectedValueException.php
6 months ago
UnknownApiErrorException.php
6 months ago
UnknownApiErrorException.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaVendor\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 |