Commit 982e769d authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #3874 from lancepioch/patch-1

[5.2] Add TokenMismatchException to the dontReport array
parents b6a1152b 05235ee6
......@@ -3,6 +3,7 @@
namespace App\Exceptions;
use Exception;
use Illuminate\Session\TokenMismatchException;
use Illuminate\Validation\ValidationException;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
......@@ -20,6 +21,7 @@ class Handler extends ExceptionHandler
AuthorizationException::class,
HttpException::class,
ModelNotFoundException::class,
TokenMismatchException::class,
ValidationException::class,
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment