mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
24 lines
353 B
PHP
24 lines
353 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package notifications
|
|
* @copyright (c) 2013 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
|
|
*
|
|
*/
|
|
|
|
namespace phpbb\notification;
|
|
|
|
/**
|
|
* Notifications exception
|
|
*
|
|
* @package notifications
|
|
*/
|
|
class exception extends \Exception
|
|
{
|
|
public function __toString()
|
|
{
|
|
return $this->getMessage();
|
|
}
|
|
}
|