Hi,

On Tue, Feb 17, 2009 at 2:35 PM,  <thom...@apache.org> wrote:
> -            throw new IOException(fsResource.getPath()
> +            IOException e2 = new IOException(fsResource.getPath()
>                     + ": Error while creating value: " + fse.toString());
> +            e2.initCause(fse);
> +            throw e2;

There's a nice utility class in Commons IO 1.4 for this purpose. See
IOExceptionWithCause [1].

[1] 
http://commons.apache.org/io/api-release/org/apache/commons/io/IOExceptionWithCause.html

BR,

Jukka Zitting

Reply via email to