2024-04-29 10:21:07 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-04-29 10:21:07 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace OCP\TaskProcessing\Exception;
|
|
|
|
|
|
2025-10-20 09:54:10 -04:00
|
|
|
use OCP\AppFramework\Attribute\Consumable;
|
|
|
|
|
|
2024-04-29 10:21:07 -04:00
|
|
|
/**
|
|
|
|
|
* Exception thrown during processing of a task
|
|
|
|
|
* by a synchronous provider
|
2025-10-20 09:54:10 -04:00
|
|
|
*
|
2024-04-29 10:21:07 -04:00
|
|
|
* @since 30.0.0
|
|
|
|
|
*/
|
2025-10-30 05:49:28 -04:00
|
|
|
#[Consumable(since: '30.0.0')]
|
2024-04-29 10:21:07 -04:00
|
|
|
class ProcessingException extends \RuntimeException {
|
|
|
|
|
}
|