aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/module/exception/module_not_found_exception.php
diff options
context:
space:
mode:
authorMateBartus <mate.bartus@gmail.com>2015-05-31 13:19:50 +0200
committerMateBartus <mate.bartus@gmail.com>2015-05-31 13:22:44 +0200
commit71d03647f0433fca5a071e485d3f0cc3145c44d1 (patch)
treef703299af44812bf14e27087ad459a877c622d3d /phpBB/phpbb/module/exception/module_not_found_exception.php
parentc0972f74ca3c8ce949ecc9e9471755b84a3fe492 (diff)
downloadforums-71d03647f0433fca5a071e485d3f0cc3145c44d1.tar
forums-71d03647f0433fca5a071e485d3f0cc3145c44d1.tar.gz
forums-71d03647f0433fca5a071e485d3f0cc3145c44d1.tar.bz2
forums-71d03647f0433fca5a071e485d3f0cc3145c44d1.tar.xz
forums-71d03647f0433fca5a071e485d3f0cc3145c44d1.zip
[ticket/13777] Move module management into service
PHPBB3-13777
Diffstat (limited to 'phpBB/phpbb/module/exception/module_not_found_exception.php')
-rw-r--r--phpBB/phpbb/module/exception/module_not_found_exception.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/phpBB/phpbb/module/exception/module_not_found_exception.php b/phpBB/phpbb/module/exception/module_not_found_exception.php
new file mode 100644
index 0000000000..2d485e7b35
--- /dev/null
+++ b/phpBB/phpbb/module/exception/module_not_found_exception.php
@@ -0,0 +1,19 @@
+<?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_not_found_exception extends module_exception
+{
+
+}