OAuth
6 months ago
ApiConnectionException.php
6 months ago
ApiErrorException.php
6 months ago
AuthenticationException.php
6 months ago
BadMethodCallException.php
6 months ago
CardException.php
6 months ago
ExceptionInterface.php
6 months ago
IdempotencyException.php
6 months ago
InvalidArgumentException.php
6 months ago
InvalidRequestException.php
6 months ago
PermissionException.php
6 months ago
RateLimitException.php
6 months ago
SignatureVerificationException.php
6 months ago
TemporarySessionExpiredException.php
6 months ago
UnexpectedValueException.php
6 months ago
UnknownApiErrorException.php
6 months ago
RateLimitException.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaVendor\Stripe\Exception; |
| 4 | |
| 5 | /** |
| 6 | * RateLimitException is thrown in cases where an account is putting too much |
| 7 | * load on Stripe's API servers (usually by performing too many requests). |
| 8 | * Please back off on request rate. |
| 9 | */ |
| 10 | class RateLimitException extends InvalidRequestException {} |
| 11 |