Mercurial > hg > cmmr2012-drupal-site
annotate vendor/squizlabs/php_codesniffer/CodeSniffer/Exception.php @ 2:5311817fb629
Theme updates
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 13:19:18 +0000 |
parents | c75dbcec494b |
children |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 /** |
Chris@0 | 3 * An exception thrown by PHP_CodeSniffer when it encounters an unrecoverable error. |
Chris@0 | 4 * |
Chris@0 | 5 * PHP version 5 |
Chris@0 | 6 * |
Chris@0 | 7 * @category PHP |
Chris@0 | 8 * @package PHP_CodeSniffer |
Chris@0 | 9 * @author Greg Sherwood <gsherwood@squiz.net> |
Chris@0 | 10 * @author Marc McIntyre <mmcintyre@squiz.net> |
Chris@0 | 11 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) |
Chris@0 | 12 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence |
Chris@0 | 13 * @link http://pear.php.net/package/PHP_CodeSniffer |
Chris@0 | 14 */ |
Chris@0 | 15 |
Chris@0 | 16 /** |
Chris@0 | 17 * An exception thrown by PHP_CodeSniffer when it encounters an unrecoverable error. |
Chris@0 | 18 * |
Chris@0 | 19 * @category PHP |
Chris@0 | 20 * @package PHP_CodeSniffer |
Chris@0 | 21 * @author Greg Sherwood <gsherwood@squiz.net> |
Chris@0 | 22 * @author Marc McIntyre <mmcintyre@squiz.net> |
Chris@0 | 23 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) |
Chris@0 | 24 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence |
Chris@0 | 25 * @version Release: @package_version@ |
Chris@0 | 26 * @link http://pear.php.net/package/PHP_CodeSniffer |
Chris@0 | 27 */ |
Chris@0 | 28 class PHP_CodeSniffer_Exception extends Exception |
Chris@0 | 29 { |
Chris@0 | 30 |
Chris@0 | 31 }//end class |