diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-06-03 12:22:31 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-06-03 12:22:31 +0200 |
commit | 6ab38be40e1535b62283d6bba4b9e9af0f864fbb (patch) | |
tree | 4c83c0b2268e91b75a2c5a764c04375977c6be82 /lib/private/connector/sabre | |
parent | 500748725c46803ff2a0ec291db37a831322012c (diff) | |
download | nextcloud-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.php | 2 |
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); } |