class ExceptionHandler extends ExceptionHandler
deprecated
since version 2.3, to be removed in 3.0. Use the same class from the Debug component instead.
ExceptionHandler converts an exception to a Response object.
Methods
__construct($debug = true, $charset = null, $fileLinkFormat = null) | from ExceptionHandler | |
static ExceptionHandler | register(bool $debug = true, string|null $charset = null, string|null $fileLinkFormat = null) Registers the exception handler. | from ExceptionHandler |
callable|null | setHandler(callable $handler) Sets a user exception handler. | from ExceptionHandler |
string | setFileLinkFormat(string $format) Sets the format for links to source files. | from ExceptionHandler |
handle(Exception $exception) Sends a response for the given Exception. | from ExceptionHandler | |
sendPhpResponse(Exception|FlattenException $exception) Sends the error associated with the given Exception as a plain PHP response. | from ExceptionHandler | |
Response | createResponse(Exception|FlattenException $exception) deprecated Creates the error Response associated with the given Exception. | from ExceptionHandler |
string | getHtml(Exception|FlattenException $exception) Gets the full HTML content associated with the given exception. | from ExceptionHandler |
string | getContent(FlattenException $exception) Gets the HTML content associated with the given exception. | from ExceptionHandler |
string | getStylesheet(FlattenException $exception) Gets the stylesheet associated with the given exception. | from ExceptionHandler |
catchOutput($buffer) | from ExceptionHandler | |
cleanOutput($buffer) | from ExceptionHandler |
Details
__construct($debug = true, $charset = null, $fileLinkFormat = null)
static ExceptionHandler register(bool $debug = true, string|null $charset = null, string|null $fileLinkFormat = null)
Registers the exception handler.
callable|null setHandler(callable $handler)
Sets a user exception handler.
string setFileLinkFormat(string $format)
Sets the format for links to source files.
handle(Exception $exception)
Sends a response for the given Exception.
To be as fail-safe as possible, the exception is first handled by our simple exception handler, then by the user exception handler. The latter takes precedence and any output from the former is cancelled, if and only if nothing bad happens in this handling path.
sendPhpResponse(Exception|FlattenException $exception)
Sends the error associated with the given Exception as a plain PHP response.
This method uses plain PHP functions like header() and echo to output the response.
Response createResponse(Exception|FlattenException $exception) deprecated
deprecated
since 2.8, to be removed in 3.0.Creates the error Response associated with the given Exception.
string getHtml(Exception|FlattenException $exception)
Gets the full HTML content associated with the given exception.
string getContent(FlattenException $exception)
Gets the HTML content associated with the given exception.
string getStylesheet(FlattenException $exception)
Gets the stylesheet associated with the given exception.
Please login to continue.