aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Exceptions
diff options
context:
space:
mode:
authorMarvin Borner2018-07-07 12:42:47 +0200
committerMarvin Borner2018-07-07 12:42:47 +0200
commitef3712cd7f0a4ccef324b68a4e0e078c657d98ab (patch)
treeef1205a7b219fb13988c4c3003547695b322bb02 /app/Exceptions
parent60c973ed2a8e58cc7e9d7e6ca69e17f6ec023c32 (diff)
Better http error handling
Diffstat (limited to 'app/Exceptions')
-rw-r--r--app/Exceptions/Handler.php10
1 files changed, 10 insertions, 0 deletions
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);
}
}