Java Code Examples for javax.xml.ws.soap.SOAPFaultException#getMessage()

The following examples show how to use javax.xml.ws.soap.SOAPFaultException#getMessage() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MapUDDIv2Tov3.java    From juddi with Apache License 2.0 5 votes vote down vote up
public static DispositionReportFaultMessage MapException(SOAPFaultException ex) {
        org.uddi.api_v3.DispositionReport r = new org.uddi.api_v3.DispositionReport();
        r.setTruncated(false);
        r.getResult().addAll(MapFault(ex.getFault()));
        DispositionReportFaultMessage x = new DispositionReportFaultMessage(ex.getMessage(), r);
        return x;
}
 
Example 2
Source File: JaxWsSoapFaultException.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Constructor for JaxWsSoapFaultException.
 * @param original the original JAX-WS SOAPFaultException to wrap
 */
public JaxWsSoapFaultException(SOAPFaultException original) {
	super(original.getMessage(), original);
}
 
Example 3
Source File: JaxWsSoapFaultException.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Constructor for JaxWsSoapFaultException.
 * @param original the original JAX-WS SOAPFaultException to wrap
 */
public JaxWsSoapFaultException(SOAPFaultException original) {
	super(original.getMessage(), original);
}
 
Example 4
Source File: JaxWsSoapFaultException.java    From lams with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Constructor for JaxWsSoapFaultException.
 * @param original the original JAX-WS SOAPFaultException to wrap
 */
public JaxWsSoapFaultException(SOAPFaultException original) {
	super(original.getMessage(), original);
}
 
Example 5
Source File: JaxWsSoapFaultException.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Constructor for JaxWsSoapFaultException.
 * @param original the original JAX-WS SOAPFaultException to wrap
 */
public JaxWsSoapFaultException(SOAPFaultException original) {
	super(original.getMessage(), original);
}