2019-04-10 08:45:33 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-04-10 08:45:33 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-04-10 08:45:33 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-04-10 08:45:33 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Notification;
|
|
|
|
|
|
2025-05-23 05:19:12 -04:00
|
|
|
use OCP\AppFramework\Attribute\Throwable;
|
|
|
|
|
|
|
|
|
|
#[Throwable(since: '17.0.0')]
|
2019-04-10 08:45:33 -04:00
|
|
|
class AlreadyProcessedException extends \RuntimeException {
|
2019-07-16 05:36:32 -04:00
|
|
|
/**
|
|
|
|
|
* @since 17.0.0
|
|
|
|
|
*/
|
2019-04-10 08:45:33 -04:00
|
|
|
public function __construct() {
|
|
|
|
|
parent::__construct('Notification is processed already');
|
|
|
|
|
}
|
|
|
|
|
}
|