ForgedQueryString.php 541 B

1234567891011121314151617181920
  1. <?php
  2. namespace Braintree\Exception;
  3. use Braintree\Exception;
  4. /**
  5. * Raised when a suspected forged query string is present
  6. * Raised from methods that confirm transparent redirect requests
  7. * when the given query string cannot be verified. This may indicate
  8. * an attempted hack on the merchant's transparent redirect
  9. * confirmation URL.
  10. *
  11. * @package Braintree
  12. * @subpackage Exception
  13. */
  14. class ForgedQueryString extends Exception
  15. {
  16. }
  17. class_alias('Braintree\Exception\ForgedQueryString', 'Braintree_Exception_ForgedQueryString');