try to catch test server exceptions

This commit is contained in:
Dennis Eichhorn 2022-09-30 18:07:07 +02:00
parent ed2e2375b2
commit aab71632c3

View File

@ -423,6 +423,6 @@ function phpServe() : void
try {
\phpServe();
} catch(Throwable $t) {
} catch(\Throwable $t) {
echo $t->getMessage();
}