diff --git a/lib/public/Files/SimpleFS/ISimpleRoot.php b/lib/public/Files/SimpleFS/ISimpleRoot.php
index a9b00540eb234157bb6c9c066e1e933a69adbfad..c2f9d4ff05d08b5b7f004e0192a6f074123a5de6 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);