From c6f6ea64f4d741bd734a578adb0a91e8fe7bc9ec Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 16 Jun 2017 10:13:32 +0200 Subject: [PATCH] Added `NotImplementedException` --- .../NotImplementedException.class.php | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 wcfsetup/install/files/lib/system/exception/NotImplementedException.class.php diff --git a/wcfsetup/install/files/lib/system/exception/NotImplementedException.class.php b/wcfsetup/install/files/lib/system/exception/NotImplementedException.class.php new file mode 100644 index 0000000000..d7d4e9d2c2 --- /dev/null +++ b/wcfsetup/install/files/lib/system/exception/NotImplementedException.class.php @@ -0,0 +1,27 @@ + + * @package WoltLabSuite\Core\System\Exception + * @since 3.1 + */ +class NotImplementedException extends \LogicException { + /** + * NotImplementedException constructor. + */ + public function __construct() { + parent::__construct("The invoked method has not been implemented yet."); + } +} -- 2.20.1