|
CSR :
|
|
|
Duplicate :
|
|
|
Relates :
|
|
|
Relates :
|
|
JDK-8231899 :
|
New methods added by JDK-8219793 don't describe (or mismatch specified) scenarios when referenced path item is not present.
There's
"Throws: IOException if an I/O error occurs"
declaration, however for example the following code:
FileSystems.newFileSystem(Path.of("doesnotexist"));
generates
java.nio.file.FileSystemNotFoundException: doesnotexist
And FileSystemNotFoundException is not a subclass of IOException.
|