net.schmizz.concurrent
Interface ExceptionChainer<Z extends Throwable>
- Type Parameters:
Z
- Throwable type
public interface ExceptionChainer<Z extends Throwable>
Chains an exception to desired type. For example:
ExceptionChainer<SomeException> chainer = new ExceptionChainer<SomeException>()
{
public SomeException chain(Throwable t)
{
if (t instanceof SomeException)
return (SomeException) t;
else
return new SomeExcepion(t);
}
};
chain
Z chain(Throwable t)
Copyright © 2009-2012. All Rights Reserved.