jonnybarnes.uk/app/Exceptions/Handler.php

60 lines
1.3 KiB
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace App\Exceptions;
use Exception;
use Illuminate\Support\Facades\Route;
use Illuminate\Session\TokenMismatchException;
2016-05-19 15:01:28 +01:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
2016-05-19 15:01:28 +01:00
*
* @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
2016-05-19 15:01:28 +01:00
];
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
2016-09-06 16:40:39 +01:00
* @param \Exception $exception
2016-05-19 15:01:28 +01:00
* @return void
*/
2016-09-06 16:40:39 +01:00
public function report(Exception $exception)
2016-05-19 15:01:28 +01:00
{
2016-09-06 16:40:39 +01:00
parent::report($exception);
2016-05-19 15:01:28 +01:00
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
2016-09-06 16:40:39 +01:00
* @param \Exception $exception
2016-05-19 15:01:28 +01:00
* @return \Illuminate\Http\Response
*/
2016-09-06 16:40:39 +01:00
public function render($request, Exception $exception)
2016-05-19 15:01:28 +01:00
{
if ($exception instanceof TokenMismatchException) {
Route::getRoutes()->match($request);
}
2016-09-06 16:40:39 +01:00
return parent::render($request, $exception);
}
2016-05-19 15:01:28 +01:00
}