summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Exception/RateLimitException.php
blob: cd5c76957f545c7dc80426a9e276c31a774d2d97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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
{
}