You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by Jukka Zitting <ju...@gmail.com> on 2009/02/17 14:46:42 UTC

Re: svn commit: r745051 - in /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/value: BLOBInResource.java BLOBValue.java

Hi,

On Tue, Feb 17, 2009 at 2:35 PM,  <th...@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

Re: svn commit: r745051 - in /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/value: BLOBInResource.java BLOBValue.java

Posted by Jukka Zitting <ju...@gmail.com>.
Hi,

On Tue, Feb 17, 2009 at 2:55 PM, Thomas Müller <th...@day.com> wrote:
> Hm... Sorry, I should have waited with committing the changes... I didn't
> knew about this class. I will use it in the future (but leave the code right
> now).

Yeah, that's fine. Just wanted to point it out for future use.

BR,

Jukka Zitting

Re: svn commit: r745051 - in /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/value: BLOBInResource.java BLOBValue.java

Posted by Thomas Müller <th...@day.com>.
Hi Jukka,

Hm... Sorry, I should have waited with committing the changes... I didn't
knew about this class. I will use it in the future (but leave the code right
now).

Regards,
Thomas


On Tue, Feb 17, 2009 at 2:46 PM, Jukka Zitting <ju...@gmail.com>wrote:

> Hi,
>
> On Tue, Feb 17, 2009 at 2:35 PM,  <th...@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
>