Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-20 19:01:47 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-04-20 19:01:47 +0300
commit6a6fc742dc736875a9d0a2be6891ba0fc635f1dc (patch)
tree2f559b670be9f312e14e58de8879189ecccef01f /console.php
parent069af51dd039fe9790b420b0e74289309a4952c4 (diff)
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);
}