From 71d03647f0433fca5a071e485d3f0cc3145c44d1 Mon Sep 17 00:00:00 2001 From: MateBartus Date: Sun, 31 May 2015 13:19:50 +0200 Subject: [ticket/13777] Move module management into service PHPBB3-13777 --- .../exception/module_class_not_defined_exception.php | 19 +++++++++++++++++++ phpBB/phpbb/module/exception/module_exception.php | 19 +++++++++++++++++++ .../module/exception/module_not_found_exception.php | 19 +++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 phpBB/phpbb/module/exception/module_class_not_defined_exception.php create mode 100644 phpBB/phpbb/module/exception/module_exception.php create mode 100644 phpBB/phpbb/module/exception/module_not_found_exception.php (limited to 'phpBB/phpbb/module/exception') diff --git a/phpBB/phpbb/module/exception/module_class_not_defined_exception.php b/phpBB/phpbb/module/exception/module_class_not_defined_exception.php new file mode 100644 index 0000000000..3551dc733d --- /dev/null +++ b/phpBB/phpbb/module/exception/module_class_not_defined_exception.php @@ -0,0 +1,19 @@ + + * @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/exception/module_exception.php b/phpBB/phpbb/module/exception/module_exception.php new file mode 100644 index 0000000000..8ad75112bc --- /dev/null +++ b/phpBB/phpbb/module/exception/module_exception.php @@ -0,0 +1,19 @@ + + * @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_exception extends \phpbb\exception\runtime_exception +{ + +} 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 @@ + + * @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 +{ + +} -- cgit v1.2.1 From 8d443c3de7c508068e4d6143cc41a1172df466a0 Mon Sep 17 00:00:00 2001 From: MateBartus Date: Sun, 31 May 2015 16:27:16 +0200 Subject: [ticket/13777] Remove module_class_not_defined_exception PHPBB3-13777 --- .../exception/module_class_not_defined_exception.php | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 phpBB/phpbb/module/exception/module_class_not_defined_exception.php (limited to 'phpBB/phpbb/module/exception') 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 @@ - - * @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 -{ - -} -- cgit v1.2.1