From 2dcc86131f3ca3a12455cfccd0bdb87b8795198f Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Wed, 24 Dec 2008 16:27:55 -0500 Subject: [PATCH] don't eat exceptions, since we don't have integrated error handling yet --- framework/Controller/lib/Horde/Controller/Base.php | 1 + 1 file changed, 1 insertion(+) 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; -- 2.11.0