summaryrefslogtreecommitdiffstats
path: root/lib/public/Files/SimpleFS
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Files/SimpleFS')
-rw-r--r--lib/public/Files/SimpleFS/ISimpleRoot.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/Files/SimpleFS/ISimpleRoot.php b/lib/public/Files/SimpleFS/ISimpleRoot.php
index a9b00540eb2..c2f9d4ff05d 100644
--- a/lib/public/Files/SimpleFS/ISimpleRoot.php
+++ b/lib/public/Files/SimpleFS/ISimpleRoot.php
@@ -23,6 +23,7 @@
namespace OCP\Files\SimpleFS;
use OCP\Files\NotFoundException;
+use OCP\Files\NotPermittedException;
/**
* Interface ISimpleRoot
@@ -38,6 +39,7 @@ interface ISimpleRoot {
* @param string $name
* @return ISimpleFolder
* @throws NotFoundException
+ * @throws \RuntimeException
* @since 9.2.0
*/
public function getFolder($name);
@@ -46,6 +48,8 @@ interface ISimpleRoot {
* Get all the Folders
*
* @return ISimpleFolder[]
+ * @throws NotFoundException
+ * @throws \RuntimeException
* @since 9.2.0
*/
public function getDirectoryListing();
@@ -55,6 +59,8 @@ interface ISimpleRoot {
*
* @param string $name
* @return ISimpleFolder
+ * @throws NotPermittedException
+ * @throws \RuntimeException
* @since 9.2.0
*/
public function newFolder($name);