You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
294 B
12 lines
294 B
<?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
|
|
{
|
|
}
|
|
|