if (ex instanceof InvocationTargetException) {
InvocationTargetException ite = (InvocationTargetException) ex;
if (ite.getTargetException() != null) {
faultString = ite.getTargetException().getMessage();
if (ite.getTargetException() instanceof UDDIException) {
UDDIException uddi = (UDDIException) ite.getTargetException();
errno = (new Integer(uddi.getErrno())).toString();
errCode = uddi.getFaultCode();
errText = uddi.getFaultString();
}
}
} else {
faultString = ex.getMessage();
faultActor = null;