diff options
Diffstat (limited to 'srcs/phpmyadmin/vendor/phpmyadmin/sql-parser/src/Exceptions/LoaderException.php')
| -rw-r--r-- | srcs/phpmyadmin/vendor/phpmyadmin/sql-parser/src/Exceptions/LoaderException.php | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/srcs/phpmyadmin/vendor/phpmyadmin/sql-parser/src/Exceptions/LoaderException.php b/srcs/phpmyadmin/vendor/phpmyadmin/sql-parser/src/Exceptions/LoaderException.php deleted file mode 100644 index 54b9234..0000000 --- a/srcs/phpmyadmin/vendor/phpmyadmin/sql-parser/src/Exceptions/LoaderException.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php -/** - * Exception thrown by the lexer. - */ -declare(strict_types=1); - -namespace PhpMyAdmin\SqlParser\Exceptions; - -use Exception; - -/** - * Exception thrown by the lexer. - */ -class LoaderException extends Exception -{ - /** - * The failed load name. - * - * @var string - */ - public $name; - - /** - * @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 - */ - public function __construct($msg = '', $name = '', $code = 0) - { - parent::__construct($msg, $code); - $this->name = $name; - } -} |
