Ignore 404's.

This commit is contained in:
James Cole 2021-04-04 15:53:17 +02:00
parent d3502c56d3
commit 6e722f5833
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -27,7 +27,6 @@ declare(strict_types=1);
namespace FireflyIII\Exceptions;
use ErrorException;
use Exception;
use FireflyIII\Jobs\MailError;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
@ -52,6 +51,7 @@ class Handler extends ExceptionHandler
= [
AuthenticationException::class,
LaravelValidationException::class,
NotFoundHttpException::class,
];
/**