From: Chuck Hagenbuch Date: Wed, 24 Dec 2008 21:27:55 +0000 (-0500) Subject: don't eat exceptions, since we don't have integrated error handling yet X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2dcc86131f3ca3a12455cfccd0bdb87b8795198f;p=horde.git don't eat exceptions, since we don't have integrated error handling yet --- diff --git a/framework/Controller/lib/Horde/Controller/Base.php b/framework/Controller/lib/Horde/Controller/Base.php index dc6b51cf0..dc8c298cf 100644 --- a/framework/Controller/lib/Horde/Controller/Base.php +++ b/framework/Controller/lib/Horde/Controller/Base.php @@ -161,6 +161,7 @@ abstract class Horde_Controller_Base } } catch (Exception $e) { // error handling + throw $e; } return $this->_response;