_getParam('error_handler'); switch ($errors->type) { case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER: case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION: // 404 error -- controller or action not found $this->getResponse()->setRawHeader('HTTP/1.1 404 Not Found'); $content =<<Error!

The page you requested was not found.

EOH; break; default: // application error $content =<<Error!

An unexpected error occurred. Please try again later.

EOH; break; } // Clear previous content $this->getResponse()->clearBody(); $this->view->content = $content; } }