aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/SabrePluginException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/SabrePluginException.php')
-rw-r--r--lib/public/SabrePluginException.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/public/SabrePluginException.php b/lib/public/SabrePluginException.php
new file mode 100644
index 00000000000..8b5b0dfba01
--- /dev/null
+++ b/lib/public/SabrePluginException.php
@@ -0,0 +1,25 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+namespace OCP;
+
+use Sabre\DAV\Exception;
+
+/**
+ * @since 8.2.0
+ */
+class SabrePluginException extends Exception {
+ /**
+ * Returns the HTTP statuscode for this exception
+ *
+ * @return int
+ * @since 8.2.0
+ */
+ public function getHTTPCode() {
+ return $this->code;
+ }
+}