diff options
author | David King <imkingdavid@gmail.com> | 2013-09-10 15:48:29 -0700 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-09-10 15:48:29 -0700 |
commit | fc1dfd779da37128382322ffdc75bf751a0834a3 (patch) | |
tree | 5d43d1847832169510c55c3358c42ccd095b2128 /phpBB/phpbb/auth/provider/oauth/service/exception.php | |
parent | 71aeec40f6c4c5e6a69699486b618c2ba67dff2d (diff) | |
parent | 18f6a161017f5350d9487181f4b4ed66a53a0284 (diff) | |
download | forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar.gz forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar.bz2 forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar.xz forums-fc1dfd779da37128382322ffdc75bf751a0834a3.zip |
Merge remote-tracking branch 'Hardolaf/feature/oauth' into develop
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/exception.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/service/exception.php | 25 |
1 files changed, 25 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..23d3387951 --- /dev/null +++ b/phpBB/phpbb/auth/provider/oauth/service/exception.php @@ -0,0 +1,25 @@ +<?php +/** +* +* @package auth +* @copyright (c) 2013 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 auth +*/ +class phpbb_auth_provider_oauth_service_exception extends RuntimeException +{ +} |