My code in my bootstrap As you can see my error handler is in a module
I have
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
to load modules
$this->bootstrap('frontController');
$options = array(
'module' => 'exception',
'controller' => 'index',
'action' => 'index'
);
$this->getResource('frontController')->registerPlugin(new
Zend_Controller_Plugin_ErrorHandler($options));
But my exceptions are not being redirected to this view.
