PingMeFault.java
package org.apache.hello_world_xml_http.mixed;
import jakarta.annotation.Generated;
import jakarta.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 4.2.3-SNAPSHOT-396096f84930e1924477e5975c2e57d779527e48
* 2026-07-30T07:10:40.833Z
* Generated source version: 4.2.3-SNAPSHOT
*/
@WebFault(name = "faultDetail", targetNamespace = "http://apache.org/hello_world_xml_http/mixed/types")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z", comments = "Apache CXF 4.2.3-SNAPSHOT-396096f84930e1924477e5975c2e57d779527e48")
public class PingMeFault extends Exception {
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public static final long serialVersionUID = 1L;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
private org.apache.hello_world_xml_http.mixed.types.FaultDetail faultInfo;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public PingMeFault() {
super();
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public PingMeFault(String message) {
super(message);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public PingMeFault(String message, java.lang.Throwable cause) {
super(message, cause);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public PingMeFault(String message, org.apache.hello_world_xml_http.mixed.types.FaultDetail faultDetail) {
super(message);
this.faultInfo = faultDetail;
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public PingMeFault(String message, org.apache.hello_world_xml_http.mixed.types.FaultDetail faultDetail, java.lang.Throwable cause) {
super(message, cause);
this.faultInfo = faultDetail;
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-07-30T07:10:40.833Z")
public org.apache.hello_world_xml_http.mixed.types.FaultDetail getFaultInfo() {
return this.faultInfo;
}
}