Authorization.php 450 B

12345678910111213141516171819
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when authorization fails
  6. * Raised when the API key being used is not authorized to perform
  7. * the attempted action according to the roles assigned to the user
  8. * who owns the API key.
  9. *
  10. * @package Braintree
  11. * @subpackage Exception
  12. */
  13. class Authorization extends Exception
  14. {
  15. }
  16. class_alias('Braintree\Exception\Authorization', 'Braintree_Exception_Authorization');