List of usage examples for java.nio.file FileSystemNotFoundException FileSystemNotFoundException
public FileSystemNotFoundException()
From source file:de.tiqsolutions.hdfs.HadoopFileSystemProvider.java
@Override public FileSystem getFileSystem(URI uri) { checkURI(uri);// ww w . j a va2 s. co m String key = getURIKey(uri); FileSystem fs = fileSystems.get(key); if (fs == null) throw new FileSystemNotFoundException(); return fs; }