Mercurial > hg > isophonics-drupal-site
annotate vendor/squizlabs/php_codesniffer/CodeSniffer/Exception.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
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 |