diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2025-04-28 19:57:56 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2025-04-28 19:58:06 -0100 |
commit | 6d272ff894fa969e5a526caf6a91d60eda115c53 (patch) | |
tree | df90f826a29f7169dd9b550f2e478a1b09d29e71 /lib/private/Async/Exceptions/BlockAlreadyRunningException.php | |
parent | 10a01423ecfc7e028960eee8058bd177ad28d484 (diff) | |
download | nextcloud-server-enh/noid/async-process-run.tar.gz nextcloud-server-enh/noid/async-process-run.zip |
feat(async): AsyncProcessenh/noid/async-process-run
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
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 { +} |