blessing-skin-server/app/Exceptions/Handler.php

21 lines
485 B
PHP

<?php
namespace App\Exceptions;
use Exception;
use Illuminate\Validation\ValidationException;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*/
protected $dontReport = [
HttpException::class,
ValidationException::class,
PrettyPageException::class,
];
}