aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/exception.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-08-24 22:12:44 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-08-24 22:14:21 -0400
commit7f6b2a984927915a70b8e03bbdddd00d73910436 (patch)
tree576646aba6bee2a4799521ad30785d53446a43df /phpBB/phpbb/auth/provider/oauth/service/exception.php
parentd847df717573a55cc6e13211fbe853b4784cf53c (diff)
downloadforums-7f6b2a984927915a70b8e03bbdddd00d73910436.tar
forums-7f6b2a984927915a70b8e03bbdddd00d73910436.tar.gz
forums-7f6b2a984927915a70b8e03bbdddd00d73910436.tar.bz2
forums-7f6b2a984927915a70b8e03bbdddd00d73910436.tar.xz
forums-7f6b2a984927915a70b8e03bbdddd00d73910436.zip
[feature/oauth] OAuth service exception
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/exception.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/exception.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/exception.php b/phpBB/phpbb/auth/provider/oauth/service/exception.php
new file mode 100644
index 0000000000..c2749f571a
--- /dev/null
+++ b/phpBB/phpbb/auth/provider/oauth/service/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;
+}
+
+/**
+* OAuth service exception class
+* @package phpBB3
+*/
+class phpbb_auth_provider_oauth_service_exception extends RuntimeException
+{
+}