aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/controller/exception.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-11-15 16:14:11 -0500
committerDavid King <imkingdavid@gmail.com>2012-11-16 17:05:49 -0500
commit14f44c17ad76878ed540cd5dd56a3a62b30dbd15 (patch)
tree936f3d86d7008aab742969a1057e97678e138d40 /phpBB/includes/controller/exception.php
parentd0269629dcee2dda176807bdd944415d1713db7b (diff)
downloadforums-14f44c17ad76878ed540cd5dd56a3a62b30dbd15.tar
forums-14f44c17ad76878ed540cd5dd56a3a62b30dbd15.tar.gz
forums-14f44c17ad76878ed540cd5dd56a3a62b30dbd15.tar.bz2
forums-14f44c17ad76878ed540cd5dd56a3a62b30dbd15.tar.xz
forums-14f44c17ad76878ed540cd5dd56a3a62b30dbd15.zip
[feature/controller] phpbb_controller_exception instead of RuntimeException
PHPBB3-10864
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..da2fefc600
--- /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_provider extends RuntimeException
+{
+}