Files
firefly-iii/app/Exceptions/Handler.php

54 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace FireflyIII\Exceptions;
2015-02-06 04:39:52 +01:00
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2016-02-12 14:15:49 +01:00
2015-02-11 07:35:10 +01:00
class Handler extends ExceptionHandler
{
/**
2017-09-09 21:57:45 +02:00
* A list of the exception types that are not reported.
2015-02-11 07:35:10 +01:00
*
* @var array
*/
2017-09-09 21:57:45 +02:00
protected $dontReport = [
//
];
2015-02-06 04:39:52 +01:00
2015-02-11 07:35:10 +01:00
/**
2017-09-09 21:57:45 +02:00
* A list of the inputs that are never flashed for validation exceptions.
*
2017-09-09 21:57:45 +02:00
* @var array
2015-02-11 07:35:10 +01:00
*/
2017-09-09 21:57:45 +02:00
protected $dontFlash = [
'password',
'password_confirmation',
];
2016-02-11 14:17:11 +01:00
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
2017-09-09 21:57:45 +02:00
* @param \Exception $exception
2016-02-11 14:17:11 +01:00
* @return void
*/
public function report(Exception $exception)
{
parent::report($exception);
2015-02-11 07:35:10 +01:00
}
2016-09-16 06:40:45 +02:00
/**
2017-09-09 21:57:45 +02:00
* Render an exception into an HTTP response.
2016-10-07 05:44:21 +02:00
*
2017-09-09 21:57:45 +02:00
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\Response
2016-09-16 06:40:45 +02:00
*/
2017-09-09 21:57:45 +02:00
public function render($request, Exception $exception)
2016-09-16 06:40:45 +02:00
{
2017-09-09 21:57:45 +02:00
return parent::render($request, $exception);
2016-09-16 06:40:45 +02:00
}
2015-02-06 04:39:52 +01:00
}