Handler.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. use Illuminate\Auth\AuthenticationException;
  5. use Illuminate\Validation\ValidationException;
  6. use Illuminate\Auth\Access\AuthorizationException;
  7. use Illuminate\Database\Eloquent\ModelNotFoundException;
  8. use Symfony\Component\HttpKernel\Exception\HttpException;
  9. use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
  10. class Handler extends ExceptionHandler
  11. {
  12. /**
  13. * A list of the exception types that should not be reported.
  14. *
  15. * @var array
  16. */
  17. protected $dontReport = [
  18. AuthenticationException::class,
  19. AuthorizationException::class,
  20. HttpException::class,
  21. ModelNotFoundException::class,
  22. ValidationException::class,
  23. ];
  24. /**
  25. * Convert an authentication exception into an unauthenticated response.
  26. *
  27. * @param \Illuminate\Http\Request $request
  28. * @param \Illuminate\Auth\AuthenticationException $e
  29. * @return \Symfony\Component\HttpFoundation\Response
  30. */
  31. protected function unauthenticated($request, AuthenticationException $e)
  32. {
  33. parent::unauthenticated($request, $e);
  34. }
  35. /**
  36. * Report or log an exception.
  37. *
  38. * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
  39. *
  40. * @param \Exception $e
  41. * @return void
  42. */
  43. public function report(Exception $e)
  44. {
  45. parent::report($e);
  46. }
  47. /**
  48. * Render an exception into an HTTP response.
  49. *
  50. * @param \Illuminate\Http\Request $request
  51. * @param \Exception $e
  52. * @return \Illuminate\Http\Response
  53. */
  54. public function render($request, Exception $e)
  55. {
  56. return parent::render($request, $e);
  57. }
  58. }