Rest
Rest copied to clipboard
Allows Errors in $router->exceptionRoute method
I have extended the $router->exceptionRoute() method to be able to catch Throwable Errors that are not being caught by $router->errorRoute() method.
Ex:
$router->exceptionRoute(Error::class, function (\Error $e) use ($logger) {
$logger->error($e);
...
});