FileSystemException
568569570571572573574575
ftpFs.putClient(client); } if (!ok) { throw new FileSystemException("vfs.provider.ftp/finish-put.error", getName()); } }
174175176177178179180
* <p/> * This implementation throws an exception. */ protected void doDelete() throws Exception { throw new FileSystemException("vfs.provider/delete-not-supported.error"); }
187188189190191192193
* <p/> * This implementation throws an exception. */ protected void doRename(FileObject newfile) throws Exception { throw new FileSystemException("vfs.provider/rename-not-supported.error"); }
202203204205206207208
* <p/> * This implementation throws an exception. */ protected void doCreateFolder() throws Exception { throw new FileSystemException("vfs.provider/create-folder-not-supported.error"); }
232233234235236237238
* <p/> * This implementation throws an exception. */ protected long doGetLastModifiedTime() throws Exception { throw new FileSystemException("vfs.provider/get-last-modified-not-supported.error"); }
244245246247248249250
* This implementation throws an exception. */ protected void doSetLastModifiedTime(final long modtime) throws Exception { throw new FileSystemException("vfs.provider/set-last-modified-not-supported.error"); }
268269270271272273274
* This implementation throws an exception. */ protected void doSetAttribute(final String atttrName, final Object value) throws Exception { throw new FileSystemException("vfs.provider/set-attribute-not-supported.error"); }
309310311312313314315
* when this method is called. * <p/> */ protected RandomAccessContent doGetRandomAccessContent(final RandomAccessMode mode) throws Exception { throw new FileSystemException("vfs.provider/random-access-not-supported.error"); }
331332333334335336337
* <p/> * This implementation throws an exception. */ protected OutputStream doGetOutputStream(boolean bAppend) throws Exception { throw new FileSystemException("vfs.provider/write-not-supported.error"); }
377378379380381382383384
} }); } catch (final PrivilegedActionException e) { throw new FileSystemException("vfs.provider/get-url.error", name, e.getException()); } }