i code at the moment a project for my university. i get a java.lang.reflect.InvocationTargetException if i execute my project. Have to few experience to find the bug :/.
Hope someone can help me!
Kind Regards
i code at the moment a project for my university. i get a java.lang.reflect.InvocationTargetException if i execute my project. Have to few experience to find the bug :/.
Hope someone can help me!
Kind Regards
Start by checking what the cause of your exception is
try {
...
} catch(InvocationTargetException e) {
e.getCause().printStackTrace();
}