Drupal investigation

Exception.php 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * An exception thrown by PHP_CodeSniffer when it encounters an unrecoverable error.
  4. *
  5. * PHP version 5
  6. *
  7. * @category PHP
  8. * @package PHP_CodeSniffer
  9. * @author Greg Sherwood <gsherwood@squiz.net>
  10. * @author Marc McIntyre <mmcintyre@squiz.net>
  11. * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
  12. * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
  13. * @link http://pear.php.net/package/PHP_CodeSniffer
  14. */
  15. /**
  16. * An exception thrown by PHP_CodeSniffer when it encounters an unrecoverable error.
  17. *
  18. * @category PHP
  19. * @package PHP_CodeSniffer
  20. * @author Greg Sherwood <gsherwood@squiz.net>
  21. * @author Marc McIntyre <mmcintyre@squiz.net>
  22. * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
  23. * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
  24. * @version Release: @package_version@
  25. * @link http://pear.php.net/package/PHP_CodeSniffer
  26. */
  27. class PHP_CodeSniffer_Exception extends Exception
  28. {
  29. }//end class