1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 20:24:08 +02:00

[feature/oauth] OAuth service exception

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-08-24 22:12:44 -04:00
parent d847df7175
commit 7f6b2a9849
5 changed files with 32 additions and 6 deletions

View File

@@ -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
{
}