summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Exception/RateLimitException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/stripe/stripe-php/lib/Exception/RateLimitException.php')
-rw-r--r--vendor/stripe/stripe-php/lib/Exception/RateLimitException.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/stripe/stripe-php/lib/Exception/RateLimitException.php b/vendor/stripe/stripe-php/lib/Exception/RateLimitException.php
new file mode 100644
index 0000000..f28f450
--- /dev/null
+++ b/vendor/stripe/stripe-php/lib/Exception/RateLimitException.php
@@ -0,0 +1,12 @@
+<?php
+
+namespace Stripe\Exception;
+
+/**
+ * RateLimitException is thrown in cases where an account is putting too much
+ * load on Stripe's API servers (usually by performing too many requests).
+ * Please back off on request rate.
+ */
+class RateLimitException extends InvalidRequestException
+{
+}