From 6048458a12236b72789119e2d8e947c24b60d898 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 29 Jul 2023 20:37:29 +0200 Subject: [PATCH] [ticket/9687] Remove unused exception PHPBB3-9687 --- .../exception/ban_insert_failed_exception.php | 20 ------------------- phpBB/phpbb/ban/manager.php | 1 - 2 files changed, 21 deletions(-) delete mode 100644 phpBB/phpbb/ban/exception/ban_insert_failed_exception.php diff --git a/phpBB/phpbb/ban/exception/ban_insert_failed_exception.php b/phpBB/phpbb/ban/exception/ban_insert_failed_exception.php deleted file mode 100644 index 1c1a2fee7f..0000000000 --- a/phpBB/phpbb/ban/exception/ban_insert_failed_exception.php +++ /dev/null @@ -1,20 +0,0 @@ - - * @license GNU General Public License, version 2 (GPL-2.0) - * - * For full copyright and license information, please see - * the docs/CREDITS.txt file. - * - */ - -namespace phpbb\ban\exception; - -use phpbb\exception\runtime_exception; - -class ban_insert_failed_exception extends runtime_exception -{ -} diff --git a/phpBB/phpbb/ban/manager.php b/phpBB/phpbb/ban/manager.php index ab3471a79d..8ce469b5fb 100644 --- a/phpBB/phpbb/ban/manager.php +++ b/phpBB/phpbb/ban/manager.php @@ -13,7 +13,6 @@ namespace phpbb\ban; -use phpbb\ban\exception\ban_insert_failed_exception; use phpbb\ban\exception\invalid_length_exception; use phpbb\ban\exception\type_not_found_exception; use phpbb\ban\type\type_interface;