Hi
I would like to use the default ErrorCongtroller to handle error. I registered it as a front controller plugin and it does nothing. Should I set something else to catch not existing controllers and actions or should I add some code to other controllers? Here's the code snippet for registration:
$front = Zend_Controller_Front::getInstance();
$front->registerPlugin(new Zend_Controller_Plugin_ErrorHandler());
$front->returnResponse(true);
$front->throwExceptions(true);