TooManyRequests.php 320 B

12345678910111213141516
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when the gateway request rate-limit is exceeded.
  6. *
  7. * @package Braintree
  8. * @subpackage Exception
  9. */
  10. class TooManyRequests extends Exception
  11. {
  12. }
  13. class_alias('Braintree\Exception\TooManyRequests', 'Braintree_Exception_TooManyRequests');