Catch class Error on all root entrypoints

This commit is contained in:
Thomas Müller
2016-04-20 18:01:47 +02:00
parent 069af51dd0
commit 6a6fc742dc
6 changed files with 27 additions and 13 deletions
+2
View File
@@ -95,4 +95,6 @@ try {
$application->run();
} catch (Exception $ex) {
exceptionHandler($ex);
} catch (Error $ex) {
exceptionHandler($ex);
}