diff options
author | Nils Adermann <naderman@naderman.de> | 2015-05-31 17:22:21 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2015-05-31 17:22:21 +0200 |
commit | 6813735d82d5309327e63d8308988f81554d2299 (patch) | |
tree | fffea6f2d83d41728a61cdf75c8ef452d79569c7 /phpBB/phpbb/module/exception/module_exception.php | |
parent | 4b46ac78a6ee1bd792c0650497bc09b55e7fffb1 (diff) | |
parent | 8d443c3de7c508068e4d6143cc41a1172df466a0 (diff) | |
download | forums-6813735d82d5309327e63d8308988f81554d2299.tar forums-6813735d82d5309327e63d8308988f81554d2299.tar.gz forums-6813735d82d5309327e63d8308988f81554d2299.tar.bz2 forums-6813735d82d5309327e63d8308988f81554d2299.tar.xz forums-6813735d82d5309327e63d8308988f81554d2299.zip |
Merge pull request #3552 from MateBartus/ticket/13777
[ticket/13777] Move module management related functionailty into service
Diffstat (limited to 'phpBB/phpbb/module/exception/module_exception.php')
-rw-r--r-- | phpBB/phpbb/module/exception/module_exception.php | 19 |
1 files changed, 19 insertions, 0 deletions
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 @@ +<?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_exception extends \phpbb\exception\runtime_exception +{ + +} |