summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Exception/RateLimitException.php
blob: f28f450fdb8c544d7b944812413fe838858ba3b6 (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
{
}