summaryrefslogtreecommitdiffstats
path: root/lib/private/connector/sabre
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-06-03 12:22:31 +0200
committerVincent Petry <pvince81@owncloud.com>2015-06-03 12:22:31 +0200
commit6ab38be40e1535b62283d6bba4b9e9af0f864fbb (patch)
tree4c83c0b2268e91b75a2c5a764c04375977c6be82 /lib/private/connector/sabre
parent500748725c46803ff2a0ec291db37a831322012c (diff)
downloadnextcloud-server-6ab38be40e1535b62283d6bba4b9e9af0f864fbb.tar.gz
nextcloud-server-6ab38be40e1535b62283d6bba4b9e9af0f864fbb.zip
Translate invalid path exception to sabre exception for files
Diffstat (limited to 'lib/private/connector/sabre')
-rw-r--r--lib/private/connector/sabre/directory.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php
index 82e1b55d763..58f16a2bd04 100644
--- a/lib/private/connector/sabre/directory.php
+++ b/lib/private/connector/sabre/directory.php
@@ -104,6 +104,8 @@ class Directory extends \OC\Connector\Sabre\Node
return $node->put($data);
} catch (\OCP\Files\StorageNotAvailableException $e) {
throw new \Sabre\DAV\Exception\ServiceUnavailable($e->getMessage());
+ } catch (\OCP\Files\InvalidPathException $ex) {
+ throw new InvalidPath($ex->getMessage());
} catch (LockedException $e) {
throw new FileLocked($e->getMessage(), $e->getCode(), $e);
}