mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
57 lines
1.2 KiB
PHP
57 lines
1.2 KiB
PHP
<?php namespace FireflyIII\Exceptions;
|
|
|
|
use Exception;
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
/**
|
|
* Class Handler
|
|
*
|
|
* @codeCoverageIgnore
|
|
* @package FireflyIII\Exceptions
|
|
*/
|
|
class Handler extends ExceptionHandler
|
|
{
|
|
|
|
/**
|
|
* A list of the exception types that should not be reported.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dontReport
|
|
= [
|
|
'Symfony\Component\HttpKernel\Exception\HttpException'
|
|
];
|
|
|
|
/**
|
|
* 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)
|
|
{
|
|
if ($this->isHttpException($e)) {
|
|
return $this->renderHttpException($e);
|
|
} else {
|
|
return parent::render($request, $e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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)
|
|
{
|
|
parent::report($e);
|
|
}
|
|
|
|
}
|