summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Exception/ApiConnectionException.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/stripe/stripe-php/lib/Exception/ApiConnectionException.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/stripe/stripe-php/lib/Exception/ApiConnectionException.php b/vendor/stripe/stripe-php/lib/Exception/ApiConnectionException.php
new file mode 100644
index 0000000..33f2ede
--- /dev/null
+++ b/vendor/stripe/stripe-php/lib/Exception/ApiConnectionException.php
@@ -0,0 +1,12 @@
+<?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
+{
+}