You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/cryptomator/cryptofs/CryptoFileSystem.java
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,11 @@ public abstract class CryptoFileSystem extends FileSystem {
35
35
*
36
36
* @param cleartextPath absolute path to the cleartext file or folder belonging to this {@link CryptoFileSystem}. Internally the path must be an instance of {@link CryptoPath}
37
37
* @return the {@link Path} to ciphertext file or folder containing teh actual encrypted data
38
-
* @throws IOException
38
+
* @throws java.nio.file.ProviderMismatchException if the cleartext path does not belong to this CryptoFileSystem
39
+
* @throws java.nio.file.NoSuchFileException if for the cleartext path no ciphertext resource exists
40
+
* @throws IOException if an I/O error occurs looking for the ciphertext resource
0 commit comments