diff options
Diffstat (limited to 'src/Exceptions/LoaderException.php')
-rw-r--r-- | src/Exceptions/LoaderException.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Exceptions/LoaderException.php b/src/Exceptions/LoaderException.php index d809876..41d04ff 100644 --- a/src/Exceptions/LoaderException.php +++ b/src/Exceptions/LoaderException.php @@ -6,6 +6,8 @@ declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Exceptions; +use Exception; + /** * Exception thrown by the lexer. * @@ -13,7 +15,7 @@ namespace PhpMyAdmin\SqlParser\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. |