Sfoglia il codice sorgente

catch Error

develop
Robin Thoni 8 anni fa
parent
commit
745edb6e7e
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6
    0
      src/Utils/Controller/LuticateApplication.php

+ 6
- 0
src/Utils/Controller/LuticateApplication.php Vedi File

@@ -105,6 +105,12 @@ class LuticateApplication implements MessageComponentInterface
105 105
             $r->setStatusCode(500);
106 106
             $r->setMessage("Internal Error");
107 107
         }
108
+        catch (\Error $e)
109
+        {
110
+            LuLog::log($e);
111
+            $r->setStatusCode(500);
112
+            $r->setMessage("Internal Error");
113
+        }
108 114
         return $r;
109 115
     }
110 116
     

Loading…
Annulla
Salva