aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Migration/Exceptions/AttributeException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Migration/Exceptions/AttributeException.php')
-rw-r--r--lib/private/Migration/Exceptions/AttributeException.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/private/Migration/Exceptions/AttributeException.php b/lib/private/Migration/Exceptions/AttributeException.php
new file mode 100644
index 00000000000..3daf99032ad
--- /dev/null
+++ b/lib/private/Migration/Exceptions/AttributeException.php
@@ -0,0 +1,17 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OC\Migration\Exceptions;
+
+use Exception;
+
+/**
+ * @since 30.0.0
+ */
+class AttributeException extends Exception {
+}