You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Triggering a Vendo Exception Handler I first got this error:
Fatal error: Exception thrown without a stack frame in Unknown on line 0
I tracked it down and var_dumped Request::current() which returns NULL
seems that it isn't available there?
This does work though:
$view = new View_Error_404;
Triggering a Vendo Exception Handler I first got this error:
Fatal error: Exception thrown without a stack frame in Unknown on line 0
I tracked it down and var_dumped Request::current() which returns NULL
seems that it isn't available there?
This does work though:
$view = new View_Error_404;
Notice that I use php strict mode.
For better debugging it is usefull to use a try catch block in handle():
http://www.php.net/manual/de/function.set-exception-handler.php#88082
The text was updated successfully, but these errors were encountered: