From 163227439c3aeec86de1a3ddc017c871721747db Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 27 Jan 2015 18:27:03 -0500 Subject: [PATCH] Raise exception again in index.php as alternative to die() * Backport from saas --- airtime_mvc/public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index 59a4054d7..a82aceef8 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -87,6 +87,6 @@ try { } else { Logging::error($e->getTrace()); } - die(); + throw $e; }