From 0a4a548f9cdaa0ca6d8f3615620f5aca593492a2 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 22 Feb 2022 10:46:02 -0800 Subject: [PATCH] Added use statement Signed-off-by: snipe --- app/Exceptions/Handler.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 2bb8cc9f5e..e53c3c9d10 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -5,6 +5,7 @@ namespace App\Exceptions; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use App\Helpers\Helper; use Illuminate\Validation\ValidationException; +use Illuminate\Auth\AuthenticationException; use Log; use Throwable; use JsonException; @@ -142,4 +143,4 @@ class Handler extends ExceptionHandler // }); } -} +} \ No newline at end of file