1   
2   package com.aggregator;
3   
4   import javax.xml.ws.WebFault;
5   
6   
7   
8   
9   
10  
11  
12  
13  @WebFault(name = "HandlingReportErrors", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/")
14  public class HandlingReportErrors_Exception
15      extends Exception
16  {
17  
18      
19  
20  
21  
22      private HandlingReportErrors faultInfo;
23  
24      
25  
26  
27  
28  
29      public HandlingReportErrors_Exception(String message, HandlingReportErrors faultInfo) {
30          super(message);
31          this.faultInfo = faultInfo;
32      }
33  
34      
35  
36  
37  
38  
39  
40      public HandlingReportErrors_Exception(String message, HandlingReportErrors faultInfo, Throwable cause) {
41          super(message, cause);
42          this.faultInfo = faultInfo;
43      }
44  
45      
46  
47  
48  
49  
50      public HandlingReportErrors getFaultInfo() {
51          return faultInfo;
52      }
53  
54  }