logger.log(Level.WARNING, "XMLStreamException during handling invocation target exception", e);
} catch (InvocationTargetException e) {
OMElement omException = (OMElement)((FaultException)e.getCause()).getFaultInfo();
try {
WrappedSCAException wrappedException = new WrappedSCAException(omException.toStringWithConsume());
InvocationException exception = new InvocationException(wrappedException);
throw exception;
} catch (XMLStreamException xmle) {
logger.log(Level.WARNING, "XMLStreamException during handling invocation target exception", xmle);
}