pixelfed/app/Exceptions/Handler.php

59 wiersze
1.3 KiB
PHP
Czysty Zwykły widok Historia

2018-04-15 23:56:48 +00:00
<?php
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2020-05-29 07:01:32 +00:00
use Throwable;
2018-04-15 23:56:48 +00:00
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* Report or log an exception.
*
2018-08-28 03:07:36 +00:00
* @param \Exception $exception
*
2018-04-15 23:56:48 +00:00
* @return void
*/
2020-05-29 07:01:32 +00:00
public function report(Throwable $exception)
2018-04-15 23:56:48 +00:00
{
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
2018-08-28 03:07:36 +00:00
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
*
2018-04-15 23:56:48 +00:00
* @return \Illuminate\Http\Response
*/
2020-05-29 07:01:32 +00:00
public function render($request, Throwable $exception)
2018-04-15 23:56:48 +00:00
{
if ($request->wantsJson())
return response()->json(
['error' => $exception->getMessage()],
method_exists($exception, 'getStatusCode') ? $exception->getStatusCode() : 500
);
2018-04-15 23:56:48 +00:00
return parent::render($request, $exception);
}
}