On Mon, Oct 25, 2010 at 2:00 PM, Filip Defoort
<filip...@cirquedigital.com> wrote:
> Well, it's my job to write proper code. Other people can do all they
> want, but with just a runtime exception I wouldn't be able to do what
> I'd need to do.
>

Again, I think you're misunderstanding my suggestion.  I'm suggesting
to do this:

public class FileSystemException extends RuntimeException

as opposed to

public class FileSystemException extends IOException

This makes all VFS's exceptions unchecked.  They can be caught if you
want or they can be propagated up the call stack without having to
wrap them up and do it yourself.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to