Configuration.php 351 B

1234567891011121314151617
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when the Braintree library is not completely configured.
  6. *
  7. * @package Braintree
  8. * @subpackage Exception
  9. * @see Configuration
  10. */
  11. class Configuration extends Exception
  12. {
  13. }
  14. class_alias('Braintree\Exception\Configuration', 'Braintree_Exception_Configuration');