aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateBartus <mate.bartus@gmail.com>2015-05-31 16:27:16 +0200
committerMateBartus <mate.bartus@gmail.com>2015-05-31 16:27:16 +0200
commit8d443c3de7c508068e4d6143cc41a1172df466a0 (patch)
tree3d1c2dfe76a9fd607ae086ec78367fe42375ebfa
parent4044b5df8997b720ef86955f9e660189962182ea (diff)
downloadforums-8d443c3de7c508068e4d6143cc41a1172df466a0.tar
forums-8d443c3de7c508068e4d6143cc41a1172df466a0.tar.gz
forums-8d443c3de7c508068e4d6143cc41a1172df466a0.tar.bz2
forums-8d443c3de7c508068e4d6143cc41a1172df466a0.tar.xz
forums-8d443c3de7c508068e4d6143cc41a1172df466a0.zip
[ticket/13777] Remove module_class_not_defined_exception
PHPBB3-13777
-rw-r--r--phpBB/phpbb/module/exception/module_class_not_defined_exception.php19
-rw-r--r--phpBB/phpbb/module/module_manager.php1
2 files changed, 0 insertions, 20 deletions
diff --git a/phpBB/phpbb/module/exception/module_class_not_defined_exception.php b/phpBB/phpbb/module/exception/module_class_not_defined_exception.php
deleted file mode 100644
index 3551dc733d..0000000000
--- a/phpBB/phpbb/module/exception/module_class_not_defined_exception.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- *
- * This file is part of the phpBB Forum Software package.
- *
- * @copyright (c) phpBB Limited <https://www.phpbb.com>
- * @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\module\exception;
-
-class module_class_not_defined_exception extends module_exception
-{
-
-}
diff --git a/phpBB/phpbb/module/module_manager.php b/phpBB/phpbb/module/module_manager.php
index 707e297257..a812d06736 100644
--- a/phpBB/phpbb/module/module_manager.php
+++ b/phpBB/phpbb/module/module_manager.php
@@ -13,7 +13,6 @@
namespace phpbb\module;
-use phpbb\module\exception\module_class_not_defined_exception;
use phpbb\module\exception\module_exception;
use phpbb\module\exception\module_not_found_exception;