wp-user-avatar
/
third-party
/
vendor
/
stripe
/
stripe-php
/
lib
/
Exception
/
ApiConnectionException.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
ApiConnectionException.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePressVendor\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 | { |
| 12 | } |
| 13 |