catch (Throwable $e) { http_response_code(500); echo "

System Error

"; echo "
";
    echo "MESSAGE: " . $e->getMessage() . "\n\n";
    echo "FILE: " . $e->getFile() . "\n";
    echo "LINE: " . $e->getLine() . "\n\n";
    echo $e->getTraceAsString();
    echo "
"; exit; }