return wsInvocation.getReturnValue();
}
catch (final Exception ex) {
try {
// call the fault handlers
boolean handlersPass = callback.callFaultHandlerChain(wsInvocation, HandlerType.POST, ex);
handlersPass = handlersPass && callback.callFaultHandlerChain(wsInvocation, HandlerType.ENDPOINT, ex);
}
catch (Exception ignore) {}
throw ex;
}