aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Notification/AlreadyProcessedException.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-07-16 11:36:32 +0200
committerJoas Schilling <coding@schilljs.com>2019-07-16 11:36:32 +0200
commit55f5bc79a148f065cffa8c97e1867c5814047ff0 (patch)
treef7873ae6cce3d3fa96ea620854e36f2470c25e3a /lib/public/Notification/AlreadyProcessedException.php
parent6d71e471e166c30c0b9abe05d36240b9f1556d8e (diff)
downloadnextcloud-server-55f5bc79a148f065cffa8c97e1867c5814047ff0.tar.gz
nextcloud-server-55f5bc79a148f065cffa8c97e1867c5814047ff0.zip
Keep the old method as a fallback and adjust the tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Notification/AlreadyProcessedException.php')
-rw-r--r--lib/public/Notification/AlreadyProcessedException.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/Notification/AlreadyProcessedException.php b/lib/public/Notification/AlreadyProcessedException.php
index 3cfe4667d6b..0ccac25f0fb 100644
--- a/lib/public/Notification/AlreadyProcessedException.php
+++ b/lib/public/Notification/AlreadyProcessedException.php
@@ -23,8 +23,14 @@ declare(strict_types=1);
namespace OCP\Notification;
+/**
+ * @since 17.0.0
+ */
class AlreadyProcessedException extends \RuntimeException {
+ /**
+ * @since 17.0.0
+ */
public function __construct() {
parent::__construct('Notification is processed already');
}