Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-04-10 15:45:33 +0300
committerJoas Schilling <coding@schilljs.com>2019-07-15 16:12:42 +0300
commit9690b3153a0909c04437d0730302045c82b63bb7 (patch)
treec09246812e9a45a06d73fbc52bd69995c6f8c895 /lib/public/Notification/AlreadyProcessedException.php
parent9b288cda6daf0ab82a910b3442fcc0e003471741 (diff)
Change how Notifiers and Apps are registered
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Notification/AlreadyProcessedException.php')
-rw-r--r--lib/public/Notification/AlreadyProcessedException.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/public/Notification/AlreadyProcessedException.php b/lib/public/Notification/AlreadyProcessedException.php
new file mode 100644
index 00000000000..3cfe4667d6b
--- /dev/null
+++ b/lib/public/Notification/AlreadyProcessedException.php
@@ -0,0 +1,32 @@
+<?php
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * 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/>.
+ *
+ */
+
+namespace OCP\Notification;
+
+
+class AlreadyProcessedException extends \RuntimeException {
+
+ public function __construct() {
+ parent::__construct('Notification is processed already');
+ }
+
+}