Authentication.php 347 B

1234567891011121314151617
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when authentication fails.
  6. * This may be caused by an incorrect Configuration
  7. *
  8. * @package Braintree
  9. * @subpackage Exception
  10. */
  11. class Authentication extends Exception
  12. {
  13. }
  14. class_alias('Braintree\Exception\Authentication', 'Braintree_Exception_Authentication');