From ce48c98215c4279c977cb41ea3173e7ef2ea56a5 Mon Sep 17 00:00:00 2001 From: Greg Sarjeant <1686767+gsarjeant@users.noreply.github.com> Date: Thu, 12 Jun 2025 22:00:13 -0400 Subject: [PATCH] Actually handle setup exceptions. --- public/index.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index bbfb57d..049bfe8 100644 --- a/public/index.php +++ b/public/index.php @@ -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; }