From ef3712cd7f0a4ccef324b68a4e0e078c657d98ab Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 7 Jul 2018 12:42:47 +0200 Subject: Better http error handling --- app/Exceptions/Handler.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'app/Exceptions') diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 043cad6..217b6e1 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -4,6 +4,8 @@ namespace App\Exceptions; use Exception; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; +use Illuminate\Support\Facades\View; +use \Symfony\Component\HttpKernel\Exception\HttpException; class Handler extends ExceptionHandler { @@ -46,6 +48,14 @@ class Handler extends ExceptionHandler */ public function render($request, Exception $exception) { + if ($exception instanceof HttpException) { + $statusCode = $exception->getStatusCode(); + return response(View::make('errors.http', [ + 'ErrorMessage' => $exception->getMessage() == '' ? 'An unknown error occurred.' : $exception->getMessage(), + 'ErrorCode' => $statusCode + ]), $statusCode); + } + return parent::render($request, $exception); } } -- cgit v1.2.3