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