ZF-11561: Controller Plugin Exceptions not correctly handled
Description
If an plugin throws an exception this isnt handled correctly by the controller errorhandler plugin
class My_Plugin_Test extends Zend_Controller_Plugin_PluginAbstract
{
public function preDispatch(Zend_Controller_Request_Abstract $request)
{
throw new Exception('Something goes wrong');
}
Comments
Posted by Marco Kaiser (bate) on 2011-07-14T08:08:28.000+0000
fixed with r24240
Posted by Marco Kaiser (bate) on 2011-07-14T08:10:18.000+0000
issue fixed for preDispatch exceptions