aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/encryption/lib/Exceptions/MultiKeyEncryptException.php')
-rw-r--r--apps/encryption/lib/Exceptions/MultiKeyEncryptException.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php b/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php
new file mode 100644
index 00000000000..60394af45c2
--- /dev/null
+++ b/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php
@@ -0,0 +1,13 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+namespace OCA\Encryption\Exceptions;
+
+use OCP\Encryption\Exceptions\GenericEncryptionException;
+
+class MultiKeyEncryptException extends GenericEncryptionException {
+}