What could cause java.lang.reflect.InvocationTargetException? What could cause java.lang.reflect.InvocationTargetException? java java

What could cause java.lang.reflect.InvocationTargetException?


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.


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.


Use the getCause() method on the InvocationTargetException to retrieve the original exception.