Added use statement

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-02-22 10:46:02 -08:00
parent 784bf6f223
commit 0a4a548f9c

View file

@ -5,6 +5,7 @@ namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use App\Helpers\Helper; use App\Helpers\Helper;
use Illuminate\Validation\ValidationException; use Illuminate\Validation\ValidationException;
use Illuminate\Auth\AuthenticationException;
use Log; use Log;
use Throwable; use Throwable;
use JsonException; use JsonException;
@ -142,4 +143,4 @@ class Handler extends ExceptionHandler
// //
}); });
} }
} }