ApiConnectionException.php 292 B

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