From 05235ee6bff52926b266ce0a295f3f2fc35451e0 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Fri, 12 Aug 2016 19:07:16 -0400 Subject: [PATCH] Add TokenMismatchException to the dontReport array --- app/Exceptions/Handler.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 53617ef4a..4b1bef3e8 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -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, ];