fix exception namespace

This commit is contained in:
openlegends 2024-03-15 00:13:06 +02:00
parent 21c36b28f8
commit 9c97d5c0db

View File

@ -15,7 +15,7 @@ class Config
else else
{ {
throw new Exception(); throw new \Exception();
} }
} }
@ -100,7 +100,7 @@ class Config
if (!is_dir($location) || !is_readable($location)) if (!is_dir($location) || !is_readable($location))
{ {
throw new Exception(); throw new \Exception();
} }
foreach (scandir($location) as $filename) foreach (scandir($location) as $filename)
@ -124,17 +124,17 @@ class Config
{ {
if (!is_file($location) || !is_readable($location)) if (!is_file($location) || !is_readable($location))
{ {
throw new Exception(); throw new \Exception();
} }
if (!$json = file_get_contents($location)) if (!$json = file_get_contents($location))
{ {
throw new Exception(); throw new \Exception();
} }
if (!$config = json_decode($json)) if (!$config = json_decode($json))
{ {
throw new Exception(); throw new \Exception();
} }
return $config; return $config;