18 lines
403 B
PHP
18 lines
403 B
PHP
<?php
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
/**
|
|
* Base exception class for when a notice cannot be saved
|
|
*
|
|
* @category Exception
|
|
* @package GNUsocial
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
* @link https://gnu.io/social
|
|
*/
|
|
|
|
class NoticeSaveException extends ServerException
|
|
{
|
|
}
|