annotate vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents
children af1871eacc83
rev   line source
Chris@17 1 <?php
Chris@17 2 /**
Chris@17 3 * An exception thrown by PHP_CodeSniffer when it encounters an unrecoverable error.
Chris@17 4 *
Chris@17 5 * @author Greg Sherwood <gsherwood@squiz.net>
Chris@17 6 * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
Chris@17 7 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
Chris@17 8 */
Chris@17 9
Chris@17 10 namespace PHP_CodeSniffer\Exceptions;
Chris@17 11
Chris@17 12 class RuntimeException extends \Exception
Chris@17 13 {
Chris@17 14
Chris@17 15 }//end class