Unexpected.php 351 B

1234567891011121314151617
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when an error occurs that the client library is not built to handle.
  6. * This shouldn't happen.
  7. *
  8. * @package Braintree
  9. * @subpackage Exception
  10. */
  11. class Unexpected extends Exception
  12. {
  13. }
  14. class_alias('Braintree\Exception\Unexpected', 'Braintree_Exception_Unexpected');