Well, I've tried to understand and read what could cause it but I just can't get it:

I have somewhere in my code this:

 try{
 ..
 m.invoke(testObject);
 ..
 } catch(AssertionError e){
 ...
 } catch(Exception e){
 ..
 }

Thing is that, when it tries to invoke some method it throws InvocationTargetException instead of some other expected exception (specifically ArrayIndexOutOfBoundsException). As I actually know what method is invoked I went straight to this method code and added a try-catch block for the line that suppose to throw ArrayIndexOutOfBoundsException and it really threw ArrayIndexOutOfBoundsException as expected. Yet when going up it somehow changes to InvocationTargetException and in the code above catch(Exception e) e is InvocationTargetException and not ArrayIndexOutOfBoundsException as expected.

What could cause such a behavior or how can I check such a thing?

link|improve this question

feedback

4 Answers

up vote 19 down vote accepted

You've added an extra level of abstraction by calling the method with reflection. The reflection layer wraps any exception in an InvocationTargetException, which lets you tell the difference between an exception actually caused by a failure in the reflection call (maybe your argument list wasn't valid, for example) and a failure within the method called.

Just unwrap the cause within the InvocationTargetException and you'll get to the original one.

link|improve this answer
Thanks, but that how will I differ between (AssertionError e) and (Exception e) for example? If I always get InvocationTargetException first before unwrapping the cause where will I differ between each exception? – user550413 May 16 '11 at 17:32
@user550413: By unwrapping the exception and examining that, of course. You can always throw it yourself, and catch it that way if you must. – Jon Skeet May 16 '11 at 17:53
3  
For anyone wondering about what it means to "unwrap the cause within the InvocationTargetException", I just discovered that if you've got it printed using exception.printStackTrace(), you just look at the "Caused By:" section instead of the top half/normal section. – HJanrs Feb 10 at 19:42
feedback

The exception is thrown if

InvocationTargetException - if the underlying method throws an exception.

So if the method, that has been invoked with reflection API, throws an exception (runtime exception for example), the reflection API will wrap the exception into an InvocationTargetException.

link|improve this answer
feedback

From the Javadoc of Method.invoke()

Throws: InvocationTargetException - if the underlying method throws an exception.

This exception is throw if the method called threw an exception.

link|improve this answer
feedback

That InvocationTargetException is probably wrapping up your ArrayIndexOutOfBoundsException. There is no telling upfront when using reflection what that method can throw -- so rather than using a throws Exception approach, all the exceptions are being caught and wrapped up in InvocationTargetException.

link|improve this answer
Thanks, but that how will I differ between (AssertionError e) and (Exception e) for example? If I always get InvocationTargetException first before unwrapping the cause where will I differ between each exception? – user550413 May 16 '11 at 17:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.