Actually handle setup exceptions.

This commit is contained in:
Greg Sarjeant 2025-06-12 22:00:13 -04:00
parent 2aecc934f2
commit ce48c98215

View File

@ -19,8 +19,7 @@ load_classes();
try {
confirm_setup();
} catch (SetupException $e) {
// TODO - pass to exception handler (maybe also defined in bootstrap to keep this smaller)
echo $e->getMessage();
handle_setup_exception($e);
exit;
}