klein.php icon indicating copy to clipboard operation
klein.php copied to clipboard

It doesn't show appropriate message when an exception hasn't caught

Open miladrahimi opened this issue 10 years ago • 0 comments

$router->onError(function ($x) {
echo "<pre>";
var_dump($x);
echo "</pre>";
echo "<br>Routing Error";
});

And when the app throws an exception, the $x will be one of the script class not the exception.

miladrahimi avatar Apr 14 '15 12:04 miladrahimi