このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/app/Exceptions/Handler.php

56 行
1.1 KiB
PHP
Raw 通常表示 履歴

2018-01-24 00:25:04 +09:00
<?php
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
2018-01-24 00:25:04 +09: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.
*
* @param \Throwable $exception
2018-01-24 00:25:04 +09:00
* @return void
*
* @throws \Exception
2018-01-24 00:25:04 +09:00
*/
public function report(Throwable $exception)
2018-01-24 00:25:04 +09:00
{
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Throwable $exception
* @return \Symfony\Component\HttpFoundation\Response
*
* @throws \Throwable
2018-01-24 00:25:04 +09:00
*/
public function render($request, Throwable $exception)
2018-01-24 00:25:04 +09:00
{
return parent::render($request, $exception);
}
}