aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php')
-rw-r--r--lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php b/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php
new file mode 100644
index 00000000000..25f8b0dcbf7
--- /dev/null
+++ b/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php
@@ -0,0 +1,17 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+namespace OC\IntegrityCheck\Exceptions;
+
+/**
+ * Class InvalidSignatureException is thrown in case the signature of the hashes
+ * cannot be properly validated. This indicates that either files
+ *
+ * @package OC\IntegrityCheck\Exceptions
+ */
+class InvalidSignatureException extends \Exception {
+}