diff options
Diffstat (limited to 'src/Exceptions/LoaderException.php')
-rw-r--r-- | src/Exceptions/LoaderException.php | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Exceptions/LoaderException.php b/src/Exceptions/LoaderException.php index bfbd4c3..54b9234 100644 --- a/src/Exceptions/LoaderException.php +++ b/src/Exceptions/LoaderException.php @@ -1,19 +1,17 @@ <?php - /** * Exception thrown by the lexer. */ +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Exceptions; +use Exception; + /** * Exception thrown by the lexer. - * - * @category Exceptions - * - * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+ */ -class LoaderException extends \Exception +class LoaderException extends Exception { /** * The failed load name. @@ -23,8 +21,6 @@ class LoaderException extends \Exception public $name; /** - * Constructor. - * * @param string $msg the message of this exception * @param string $name the character that produced this exception * @param int $code the code of this error |