Package org.springframework.ws.client

Examples of org.springframework.ws.client.WebServiceFaultException


    /** Throws a new {@code WebServiceFaultException}. */
    @Override
    public void resolveFault(WebServiceMessage message) {
        if (message instanceof FaultAwareWebServiceMessage) {
            throw new WebServiceFaultException((FaultAwareWebServiceMessage) message);
        }
        else {
            throw new WebServiceFaultException("Message has unknown fault: " + message);
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.client.WebServiceFaultException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.