1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 04:20:32 +02:00

[feature/controller] phpbb_controller_exception instead of RuntimeException

PHPBB3-10864
This commit is contained in:
David King
2012-11-15 16:14:11 -05:00
parent d0269629dc
commit 14f44c17ad
2 changed files with 30 additions and 5 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;
}
/**
* Controller exception class
* @package phpBB3
*/
class phpbb_controller_provider extends RuntimeException
{
}