I think it makes sense to do so if you're basing all your other error handling on the IOException checked exception.
Since that interface (FileSystemView) has methods that could fail, there's really no other recourse except throw a RuntimeException and that is currently swallowed. If you do decide to change it on the trunk, let me know, and I'll do a git pull. Thanks! -----Original Message----- From: Guillaume Nodet [mailto:[email protected]] Sent: Monday, September 12, 2011 1:12 PM To: [email protected] Subject: Re: sftp questions Well, changing the interface is possible if needed I think. On Mon, Sep 12, 2011 at 18:14, Davis Ford <[email protected]> wrote: > The only issue with throwing IOException is that it is a checked exception, > and the interface method FileSystemView#getFile(String file) doesn't declare > it, so I have to change the interface to throw it.
