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.1.3-SNAPSHOT-22c6265d4306187569b30c5b19682b37fe7d5c5c
* 2025-07-04T06:50:38.816Z
* Generated source version: 4.1.3-SNAPSHOT
*/
@WebFault(name = "faultDetail", targetNamespace = "http://apache.org/hello_world_xml_http/mixed/types")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z", comments = "Apache CXF 4.1.3-SNAPSHOT-22c6265d4306187569b30c5b19682b37fe7d5c5c")
public class PingMeFault extends Exception {
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z")
public static final long serialVersionUID = 1L;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z")
private org.apache.hello_world_xml_http.mixed.types.FaultDetail faultInfo;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z")
public PingMeFault() {
super();
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z")
public PingMeFault(String message) {
super(message);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z")
public PingMeFault(String message, java.lang.Throwable cause) {
super(message, cause);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:38.816Z")
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 = "2025-07-04T06:50:38.816Z")
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 = "2025-07-04T06:50:38.816Z")
public org.apache.hello_world_xml_http.mixed.types.FaultDetail getFaultInfo() {
return this.faultInfo;
}
}