TokenizerException.php 416 B

123456789101112131415
  1. <?php
  2. /**
  3. * An exception thrown by PHP_CodeSniffer when it encounters an unrecoverable tokenizer error.
  4. *
  5. * @author Greg Sherwood <gsherwood@squiz.net>
  6. * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
  7. * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
  8. */
  9. namespace PHP_CodeSniffer\Exceptions;
  10. class TokenizerException extends \Exception
  11. {
  12. }//end class