Raise exception again in index.php as alternative to die()

* Backport from saas
This commit is contained in:
Albert Santoni 2015-01-27 18:27:03 -05:00
parent e83c86a0ff
commit 163227439c
1 changed files with 1 additions and 1 deletions

View File

@ -87,6 +87,6 @@ try {
} else {
Logging::error($e->getTrace());
}
die();
throw $e;
}