aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Async/Exceptions/SessionBlockedException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Async/Exceptions/SessionBlockedException.php')
-rw-r--r--lib/private/Async/Exceptions/SessionBlockedException.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/private/Async/Exceptions/SessionBlockedException.php b/lib/private/Async/Exceptions/SessionBlockedException.php
new file mode 100644
index 00000000000..9c6d85dc4fc
--- /dev/null
+++ b/lib/private/Async/Exceptions/SessionBlockedException.php
@@ -0,0 +1,14 @@
+<?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;
+
+use Exception;
+
+class SessionBlockedException extends AsyncProcessException {
+}