On Feb 26, 2008, at 3:04 PM, Alexander Lamb (dev) wrote:
e.getCause() will give me an InvocationTargetException.
Sorry, I should've been more explicit. You need to unwrap the exception all the way to the root cause:
Throwable th = e; while(th.getCause() != null) { th = th.getCause(); } Andrus