1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 11:44:08 +02:00

[ticket/10411] Throw exceptions instead of using trigger_error()

PHPBB3-10411
This commit is contained in:
Joas Schilling
2013-02-26 16:52:53 +01:00
parent 41eea66da9
commit e0df593448
3 changed files with 28 additions and 55 deletions

View File

@@ -0,0 +1,23 @@
<?php
/**
*
* @package groupposition
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* @package groupposition
*/
class phpbb_groupposition_exception extends \Exception
{
}