vote up 1 vote down star

How is it possible that the "foo" exception is not thrown, but a subsequent call of invoke() throws the below exception?

if (method.getDeclaringClass() != object.getClass())
    throw new RuntimeException("foo");

method.invoke(object);

Thrown exception:

java.lang.IllegalArgumentException: object is not an instance of declaring class at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

flag

1  
Can you give move details, for example the class definition? – iny Apr 19 at 8:30
more instead of move of course – iny Apr 19 at 8:32

1 Answer

vote up 3 vote down check

Beh... The method.invoke() call wasn't the one throwing directly. The target method was using invoke too and it threw, so it bubbled up.

Lesson learned: Handle InvocationTargetException separately from other exceptions.

link|flag
hhaaa. I already have thought of that :) – bruno conde Apr 19 at 9:13
Ouch ... that one's nasty! – Joachim Sauer Apr 19 at 9:24
1  
So: always look at the full stack trace. – Joachim Sauer Apr 19 at 9:25

Your Answer

Get an OpenID
or

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