summaryrefslogtreecommitdiffstats
path: root/console.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-20 18:01:47 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-04-20 18:01:47 +0200
commit6a6fc742dc736875a9d0a2be6891ba0fc635f1dc (patch)
tree2f559b670be9f312e14e58de8879189ecccef01f /console.php
parent069af51dd039fe9790b420b0e74289309a4952c4 (diff)
downloadnextcloud-server-6a6fc742dc736875a9d0a2be6891ba0fc635f1dc.tar.gz
nextcloud-server-6a6fc742dc736875a9d0a2be6891ba0fc635f1dc.zip
Catch class Error on all root entrypoints
Diffstat (limited to 'console.php')
-rw-r--r--console.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/console.php b/console.php
index 9d2271db9f2..559c1778f1d 100644
--- a/console.php
+++ b/console.php
@@ -95,4 +95,6 @@ try {
$application->run();
} catch (Exception $ex) {
exceptionHandler($ex);
+} catch (Error $ex) {
+ exceptionHandler($ex);
}