aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/exceptions
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-10-05 10:57:11 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-05 10:57:11 +0200
commit710b7dd81c4c4cd84e0d3024fcdcc1bf150b5137 (patch)
tree37832821536e15f9dc108eb72963804e9d589ace /apps/files_sharing/lib/exceptions
parent56c35da8d5bdbe1056cf79d81c3138a015c93e2f (diff)
parent3d2acb5003a4953d3f422b34f670d87c4afb11c9 (diff)
downloadnextcloud-server-710b7dd81c4c4cd84e0d3024fcdcc1bf150b5137.tar.gz
nextcloud-server-710b7dd81c4c4cd84e0d3024fcdcc1bf150b5137.zip
Merge pull request #19487 from owncloud/split_share_middleware
Split files_sharing middelware
Diffstat (limited to 'apps/files_sharing/lib/exceptions')
-rw-r--r--apps/files_sharing/lib/exceptions/brokenpath.php32
-rw-r--r--apps/files_sharing/lib/exceptions/s2sexception.php26
2 files changed, 58 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/exceptions/brokenpath.php b/apps/files_sharing/lib/exceptions/brokenpath.php
new file mode 100644
index 00000000000..71fe93f8e92
--- /dev/null
+++ b/apps/files_sharing/lib/exceptions/brokenpath.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Morris Jobke <hey@morrisjobke.de>
+ *
+ * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\Files_Sharing\Exceptions;
+
+/**
+ * Expected path with a different root
+ * Possible Error Codes:
+ * 10 - Path not relative to data/ and point to the users file directory
+
+ */
+class BrokenPath extends \Exception {
+}
diff --git a/apps/files_sharing/lib/exceptions/s2sexception.php b/apps/files_sharing/lib/exceptions/s2sexception.php
new file mode 100644
index 00000000000..7f5557f8cd3
--- /dev/null
+++ b/apps/files_sharing/lib/exceptions/s2sexception.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\Files_Sharing\Exceptions;
+
+/**
+ * S2S sharing not allowed
+ */
+class S2SException extends \Exception {
+}