diff options
Diffstat (limited to 'lib/private/Async/Exceptions/BlockAlreadyRunningException.php')
-rw-r--r-- | lib/private/Async/Exceptions/BlockAlreadyRunningException.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/private/Async/Exceptions/BlockAlreadyRunningException.php b/lib/private/Async/Exceptions/BlockAlreadyRunningException.php new file mode 100644 index 00000000000..4c671d91d55 --- /dev/null +++ b/lib/private/Async/Exceptions/BlockAlreadyRunningException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); +/** + * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OC\Async\Exceptions; + +class BlockAlreadyRunningException extends AsyncProcessException { +} |