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
ApiConnectionException.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaVendor\Stripe\Exception; |
| 4 | |
| 5 | /** |
| 6 | * ApiConnection is thrown in the event that the SDK can't connect to Stripe's |
| 7 | * servers. That can be for a variety of different reasons from a downed |
| 8 | * network to a bad TLS certificate. |
| 9 | */ |
| 10 | class ApiConnectionException extends ApiErrorException {} |
| 11 |