cancel
Showing results for 
Search instead for 
Did you mean: 

java error

Former Member
0 Kudos

I got an error "java.lang.reflect.Invocation Target Exception:null" wile run a jsp apllication. why it is.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Binoj,

This exception is a wrapper for some other exception; Nothing can be said without seeing the code. An InvocationTargetException means that there was some sort of exception inside the method you were invoking.

You can get the other exception from the InvocationTargetException by using the getCause() method.

also check this

http://fit.c2.com/wiki.cgi?InvocationTargetException

Regards

Divya