summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php')
-rw-r--r--vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php b/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php
new file mode 100644
index 0000000..c84f37d
--- /dev/null
+++ b/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php
@@ -0,0 +1,22 @@
+<?php
+
+namespace Stripe\Exception;
+
+// TODO: remove this check once we drop support for PHP 5
+if (\interface_exists(\Throwable::class, false)) {
+ /**
+ * The base interface for all Stripe exceptions.
+ */
+ interface ExceptionInterface extends \Throwable
+ {
+ }
+} else {
+ /**
+ * The base interface for all Stripe exceptions.
+ */
+ // phpcs:disable PSR1.Classes.ClassDeclaration.MultipleClasses
+ interface ExceptionInterface
+ {
+ }
+ // phpcs:enable
+}