Property | Type | Description | |
---|---|---|---|
$dontReport | array | A list of the exception types that should not be reported. |
Method | Description | |
---|---|---|
render ( Illuminate\Http\Request $request, Exception $e ) : Illuminate\Http\Response | Render an exception into an HTTP response. | |
renderForConsole ( Symfony\Component\Console\Output\OutputInterface $output, Exception $e ) : void | Render an exception to the console. | |
report ( Exception $e ) : void | Report or log an exception. | |
shouldReport ( Exception $e ) : boolean | Determine if the exception should be reported. |
Method | Description | |
---|---|---|
decorate ( string $content, string $css ) : string | Get the html response content. | |
shouldntReport ( Exception $e ) : boolean | Determine if the exception is in the "do not report" list. |
public render ( Illuminate\Http\Request $request, Exception $e ) : Illuminate\Http\Response | ||
$request | Illuminate\Http\Request | |
$e | Exception | |
return | Illuminate\Http\Response |
public renderForConsole ( Symfony\Component\Console\Output\OutputInterface $output, Exception $e ) : void | ||
$output | Symfony\Component\Console\Output\OutputInterface | |
$e | Exception | |
return | void |
public shouldReport ( Exception $e ) : boolean | ||
$e | Exception | |
return | boolean |
protected shouldntReport ( Exception $e ) : boolean | ||
$e | Exception | |
return | boolean |
protected array $dontReport | ||
return | array |