mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 15:16:16 +02:00
26 lines
315 B
PHP
26 lines
315 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package groupposition
|
|
* @copyright (c) 2013 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
|
|
*
|
|
*/
|
|
|
|
namespace phpbb\groupposition;
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @package groupposition
|
|
*/
|
|
class exception extends \Exception
|
|
{
|
|
}
|