mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Ignore 404's.
This commit is contained in:
parent
d3502c56d3
commit
6e722f5833
@ -27,7 +27,6 @@ declare(strict_types=1);
|
|||||||
namespace FireflyIII\Exceptions;
|
namespace FireflyIII\Exceptions;
|
||||||
|
|
||||||
use ErrorException;
|
use ErrorException;
|
||||||
use Exception;
|
|
||||||
use FireflyIII\Jobs\MailError;
|
use FireflyIII\Jobs\MailError;
|
||||||
use Illuminate\Auth\AuthenticationException;
|
use Illuminate\Auth\AuthenticationException;
|
||||||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||||||
@ -52,6 +51,7 @@ class Handler extends ExceptionHandler
|
|||||||
= [
|
= [
|
||||||
AuthenticationException::class,
|
AuthenticationException::class,
|
||||||
LaravelValidationException::class,
|
LaravelValidationException::class,
|
||||||
|
NotFoundHttpException::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user