nextcloud/lib/public/TaskProcessing/Exception/ProcessingException.php
Marcel Klehr 9df303f876 fix: address review comments
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
2025-10-20 15:54:10 +02:00

23 lines
433 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\TaskProcessing\Exception;
use OCP\AppFramework\Attribute\Consumable;
/**
* Exception thrown during processing of a task
* by a synchronous provider
*
* @since 30.0.0
*/
#[Consumable('30.0.0')]
class ProcessingException extends \RuntimeException {
}