|
@@ -3,6 +3,7 @@
|
|
namespace App\Exceptions;
|
|
namespace App\Exceptions;
|
|
|
|
|
|
use Exception;
|
|
use Exception;
|
|
|
|
+use Illuminate\Auth\AuthenticationException;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
@@ -17,12 +18,25 @@ class Handler extends ExceptionHandler
|
|
* @var array
|
|
* @var array
|
|
*/
|
|
*/
|
|
protected $dontReport = [
|
|
protected $dontReport = [
|
|
|
|
+ AuthenticationException::class,
|
|
AuthorizationException::class,
|
|
AuthorizationException::class,
|
|
HttpException::class,
|
|
HttpException::class,
|
|
ModelNotFoundException::class,
|
|
ModelNotFoundException::class,
|
|
ValidationException::class,
|
|
ValidationException::class,
|
|
];
|
|
];
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Convert an authentication exception into an unauthenticated response.
|
|
|
|
+ *
|
|
|
|
+ * @param \Illuminate\Http\Request $request
|
|
|
|
+ * @param \Illuminate\Auth\AuthenticationException $e
|
|
|
|
+ * @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
+ */
|
|
|
|
+ protected function unauthenticated($request, AuthenticationException $e)
|
|
|
|
+ {
|
|
|
|
+ parent::unauthenticated($request, $e);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Report or log an exception.
|
|
* Report or log an exception.
|
|
*
|
|
*
|