2015-03-12 01:44:39 +01:00
|
|
|
<?php namespace App\Exceptions;
|
|
|
|
|
2015-04-13 09:54:51 +02:00
|
|
|
use Utils;
|
2015-03-12 01:44:39 +01:00
|
|
|
use Exception;
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
|
|
|
|
class Handler extends ExceptionHandler {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of the exception types that should not be reported.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dontReport = [
|
|
|
|
'Symfony\Component\HttpKernel\Exception\HttpException'
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report or log an exception.
|
|
|
|
*
|
|
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
|
|
*
|
|
|
|
* @param \Exception $e
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function report(Exception $e)
|
|
|
|
{
|
2015-04-13 09:54:51 +02:00
|
|
|
Utils::logError(Utils::getErrorString($e));
|
|
|
|
return false;
|
|
|
|
//return parent::report($e);
|
2015-03-12 01:44:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render an exception into an HTTP response.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Exception $e
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function render($request, Exception $e)
|
|
|
|
{
|
2015-04-27 14:28:40 +02:00
|
|
|
$data = [
|
|
|
|
'error' => get_class($e),
|
|
|
|
'hideHeader' => true,
|
|
|
|
];
|
|
|
|
|
|
|
|
return response()->view('error', $data);
|
|
|
|
//return parent::render($request, $e);
|
2015-03-12 01:44:39 +01:00
|
|
|
}
|
|
|
|
}
|