mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
27 lines
386 B
PHP
27 lines
386 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package extension
|
|
* @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;
|
|
}
|
|
|
|
/**
|
|
* Exception class for metadata
|
|
*/
|
|
class phpbb_extension_exception extends UnexpectedValueException
|
|
{
|
|
public function __toString()
|
|
{
|
|
return $this->getMessage();
|
|
}
|
|
} |