SSLCaFileNotFound.php 311 B

12345678910111213141516
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when the SSL CaFile is not found.
  6. *
  7. * @package Braintree
  8. * @subpackage Exception
  9. */
  10. class SSLCaFileNotFound extends Exception
  11. {
  12. }
  13. class_alias('Braintree\Exception\SSLCaFileNotFound', 'Braintree_Exception_SSLCaFileNotFound');