diff options
Diffstat (limited to 'phpBB/includes/notification/exception.php')
-rw-r--r-- | phpBB/includes/notification/exception.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/phpBB/includes/notification/exception.php b/phpBB/includes/notification/exception.php deleted file mode 100644 index a52d6fdc57..0000000000 --- a/phpBB/includes/notification/exception.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php -/** -* -* @package notifications -* @copyright (c) 2013 phpBB Group -* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2 -* -*/ - -/** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** -* Notifications exception -* -* @package notifications -*/ -class phpbb_notification_exception extends \Exception -{ - public function __toString() - { - return $this->getMessage(); - } -} |