Exception.php 231 B

12345678910111213
  1. <?php
  2. namespace Braintree;
  3. /**
  4. * super class for all Braintree exceptions
  5. *
  6. * @package Braintree
  7. * @subpackage Exception
  8. */
  9. class Exception extends \Exception
  10. {
  11. }
  12. class_alias('Braintree\Exception', 'Braintree_Exception');