Mercurial > hg > isophonics-drupal-site
annotate vendor/squizlabs/php_codesniffer/src/Exceptions/DeepExitException.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
rev | line source |
---|---|
Chris@17 | 1 <?php |
Chris@17 | 2 /** |
Chris@17 | 3 * An exception thrown by PHP_CodeSniffer when it wants to exit from somewhere not in the main runner. |
Chris@17 | 4 * |
Chris@17 | 5 * Allows the runner to return an exit code instead of putting exit codes elsewhere |
Chris@17 | 6 * in the source code. |
Chris@17 | 7 * |
Chris@17 | 8 * @author Greg Sherwood <gsherwood@squiz.net> |
Chris@17 | 9 * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) |
Chris@17 | 10 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence |
Chris@17 | 11 */ |
Chris@17 | 12 |
Chris@17 | 13 namespace PHP_CodeSniffer\Exceptions; |
Chris@17 | 14 |
Chris@17 | 15 class DeepExitException extends \Exception |
Chris@17 | 16 { |
Chris@17 | 17 |
Chris@17 | 18 }//end class |