|  | @@ -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,
 | 
	
		
			
				|  |  |      ];
 | 
	
		
			
				|  |  |  
 |