Zend_Controller_Plugin_ErrorHandler always forwards to ErrorController::errorAction() in the default module but i want it be module aware. For example when a exception throws it must be call the module’s ErrorController like Admin_ErrorController:errorAction.
How can i do this?
Thanks.
You can create plugin that will examine your request and based on current module sets ErrorController…
Then use
to register the plugin with the FrontController. Thanks JohnP for pointing that out.