X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/27af9b102c2d6167b9025d594f8cb75e4dd76a03..97a10ec2186faa9aa53a215662714c760e980a00:/lib-php/init-website.php diff --git a/lib-php/init-website.php b/lib-php/init-website.php index d6cc8a24..6f3b5545 100644 --- a/lib-php/init-website.php +++ b/lib-php/init-website.php @@ -12,7 +12,7 @@ require_once(CONST_Debug ? 'DebugHtml.php' : 'DebugNone.php'); function userError($sMsg) { - throw new Exception($sMsg, 400); + throw new \Exception($sMsg, 400); } @@ -37,7 +37,7 @@ function shutdown_exception_handler_xml() { $error = error_get_last(); if ($error !== null && $error['type'] === E_ERROR) { - exception_handler_xml(new Exception($error['message'], 500)); + exception_handler_xml(new \Exception($error['message'], 500)); } } @@ -45,7 +45,7 @@ function shutdown_exception_handler_json() { $error = error_get_last(); if ($error !== null && $error['type'] === E_ERROR) { - exception_handler_json(new Exception($error['message'], 500)); + exception_handler_json(new \Exception($error['message'], 500)); } }