Samples JDK
PingMeFault.java
1 
2 package org.apache.hello_world_soap_http;
3 
4 import javax.xml.ws.WebFault;
5 
6 
7 /**
8  * This class was generated by Apache CXF 2.3.6
9  * 2016-02-18T23:36:32.328+05:30
10  * Generated source version: 2.3.6
11  */
12 
13 @WebFault(name = "faultDetail", targetNamespace = "http://apache.org/hello_world_soap_http/types")
14 public class PingMeFault extends Exception {
15  public static final long serialVersionUID = 20160218233632L;
16 
18 
19  public PingMeFault() {
20  super();
21  }
22 
23  public PingMeFault(String message) {
24  super(message);
25  }
26 
27  public PingMeFault(String message, Throwable cause) {
28  super(message, cause);
29  }
30 
31  public PingMeFault(String message, org.apache.helloWorldSoapHttp.types.FaultDetailDocument faultDetail) {
32  super(message);
33  this.faultDetail = faultDetail;
34  }
35 
36  public PingMeFault(String message, org.apache.helloWorldSoapHttp.types.FaultDetailDocument faultDetail, Throwable cause) {
37  super(message, cause);
38  this.faultDetail = faultDetail;
39  }
40 
41  public org.apache.helloWorldSoapHttp.types.FaultDetailDocument getFaultInfo() {
42  return this.faultDetail;
43  }
44 }