. */ if (!defined('GNUSOCIAL')) { exit(1); } /** * Parent class for an exception when trying to do something that was * probably already done. * * This is a common case for example when remote sites are not up to * date with our database. For example subscriptions, where a remote * user may be unsubscribed from our user, but they request it anyway. * * This exception is usually caught in a manner that lets the execution * continue _as if_ the desired action did what it was supposed to do. * * @category Exception * @package GNUsocial * @author Mikael Nordfeldth * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://gnu.io/ */ class AlreadyFulfilledException extends ServerException { public function __construct($msg=null) { if ($msg === null) { // TRANS: Exception text when attempting to perform something which seems already done. $msg = _('Trying to do something that was already done.'); } parent::__construct($msg, 409); } }