]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
AlreadyFulfilledException added, for acceptable exceptions
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 5 May 2014 21:20:43 +0000 (23:20 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 5 May 2014 21:20:43 +0000 (23:20 +0200)
lib/alreadyfulfilledexception.php [new file with mode: 0644]

diff --git a/lib/alreadyfulfilledexception.php b/lib/alreadyfulfilledexception.php
new file mode 100644 (file)
index 0000000..988dee2
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+/**
+ * GNU social - a federating social network
+ * Copyright (C) 2014, Free Software Foundation, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+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 <mmn@hethane.se>
+ * @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);
+    }
+}