Is there a way to get the original exception object from inside a nested or wrapped Exception (for example an EJBException or RemoteException)?
Created Mar 27, 2002
Alessandro A. Garbagnati Hi,
Absolutely yes, but the way to do that depends on the Exception, since there are no standards for that.
Some examples:
Absolutely yes, but the way to do that depends on the Exception, since there are no standards for that.
Some examples:
- When you have an javax.ejb.EJBException, you can use the getCausedByException() that returns a java.lang.Exception.
- A java.rmi.RemoteException there is a public field called detail of type java.lang.Throwable
- With a java.sql.SQLException you need to use the method getNextException() to get the chained java.sql.SQLException.
- When you have an java.lang.reflect.InvocationtargetException, you can get the thrown target java.lang.Throwable using the getTargetException() method.