Description
Deserialize on InvocationTargetException just does a
} catch (InvocationTargetException e) {
throw new AxisFault("InvocationTargetException : " + e);
—
which isn't that helpful for the one who has to solve it as most of the InvocationTargetException is then lost, I would recommend something along the lines
} catch (InvocationTargetException e) {
throw new AxisFault("InvocationTargetException [cause: "+ e.getCause() +"] [target: "+e.getTargetException()+"] :" + e);