| net.schmizz.concurrent.ExceptionChainer<Z extends java.lang.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);
}
};
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| t |
|---|