You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
292 B
12 lines
292 B
<?php
|
|
|
|
namespace Stripe\Exception;
|
|
|
|
/**
|
|
* ApiConnection is thrown in the event that the SDK can't connect to Stripe's
|
|
* servers. That can be for a variety of different reasons from a downed
|
|
* network to a bad TLS certificate.
|
|
*/
|
|
class ApiConnectionException extends ApiErrorException
|
|
{
|
|
}
|
|
|