annotate vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
children
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@18 12 class RuntimeException extends \RuntimeException
Chris@17 13 {
Chris@17 14
Chris@17 15 }//end class