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 { try {
confirm_setup(); confirm_setup();
} catch (SetupException $e) { } catch (SetupException $e) {
// TODO - pass to exception handler (maybe also defined in bootstrap to keep this smaller) handle_setup_exception($e);
echo $e->getMessage();
exit; exit;
} }