nextcloud/lib/public/TaskProcessing/Exception/ProcessingException.php
Marcel Klehr 3f527661b1 fix: Create new class instead of extending existing class
to make it easier to use this across nextcloud versions

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
2025-10-15 11:20:00 +02:00

19 lines
362 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;
/**
* Exception thrown during processing of a task
* by a synchronous provider
* @since 30.0.0
*/
class ProcessingException extends \RuntimeException {
}