uri.helloworld.HelloFault_Exception Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of servicemix-cxf-bc Show documentation
Show all versions of servicemix-cxf-bc Show documentation
JBI compliant HTTP/SOAP or JMS/SOAP binding component which use Apache CXF internally
package uri.helloworld;
import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 2.1.2
* Wed Oct 15 12:08:38 CEST 2008
* Generated source version: 2.1.2
*
*/
@WebFault(name = "HelloFault", targetNamespace = "uri:HelloWorld")
public class HelloFault_Exception extends Exception {
public static final long serialVersionUID = 20081015120838L;
private uri.helloworld.HelloFault helloFault;
public HelloFault_Exception() {
super();
}
public HelloFault_Exception(String message) {
super(message);
}
public HelloFault_Exception(String message, Throwable cause) {
super(message, cause);
}
public HelloFault_Exception(String message, uri.helloworld.HelloFault helloFault) {
super(message);
this.helloFault = helloFault;
}
public HelloFault_Exception(String message, uri.helloworld.HelloFault helloFault, Throwable cause) {
super(message, cause);
this.helloFault = helloFault;
}
public uri.helloworld.HelloFault getFaultInfo() {
return this.helloFault;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy