Browse Source

Change exceptions to ignore.

Taylor Otwell 9 years ago
parent
commit
68738b5015
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Exceptions/Handler.php

+ 2 - 2
app/Exceptions/Handler.php

@@ -3,7 +3,7 @@
 namespace App\Exceptions;
 
 use Exception;
-use Illuminate\Auth\Access\UnauthorizedException;
+use Illuminate\Auth\Access\AuthorizationException;
 use Illuminate\Database\Eloquent\ModelNotFoundException;
 use Symfony\Component\HttpKernel\Exception\HttpException;
 use Illuminate\Foundation\Validation\ValidationException;
@@ -19,8 +19,8 @@ class Handler extends ExceptionHandler
      */
     protected $dontReport = [
         HttpException::class,
+        AuthorizationException::class,
         ModelNotFoundException::class,
-        UnauthorizedException::class,
         ValidationException::class,
     ];