From 2265b9d27bc834d7c236464af9308e85f97fe2a3 Mon Sep 17 00:00:00 2001 From: raviks789 <33730024+raviks789@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:01:06 +0200 Subject: [PATCH] `LegacyWeb`: Import `Exception` class --- library/Icinga/Application/LegacyWeb.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/Icinga/Application/LegacyWeb.php b/library/Icinga/Application/LegacyWeb.php index 567382027..21181f779 100644 --- a/library/Icinga/Application/LegacyWeb.php +++ b/library/Icinga/Application/LegacyWeb.php @@ -4,6 +4,8 @@ namespace Icinga\Application; require_once dirname(__FILE__) . '/Web.php'; + +use Exception; use Icinga\Exception\ProgrammingError; class LegacyWeb extends Web