aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/controller/exception.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/controller/exception.php')
-rw-r--r--phpBB/phpbb/controller/exception.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/phpBB/phpbb/controller/exception.php b/phpBB/phpbb/controller/exception.php
new file mode 100644
index 0000000000..e8694b8bcf
--- /dev/null
+++ b/phpBB/phpbb/controller/exception.php
@@ -0,0 +1,26 @@
+<?php
+/**
+*
+* @package controller
+* @copyright (c) 2012 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+namespace phpbb\controller;
+
+/**
+* @ignore
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+/**
+* Controller exception class
+* @package phpBB3
+*/
+class exception extends \RuntimeException
+{
+}