1   
2   package org.kuali.ole.select.testing;
3   
4   import javax.xml.ws.WebFault;
5   
6   
7   
8   
9   
10  
11  
12  @WebFault(name = "Exception", targetNamespace = "http://service.select.ole.kuali.org/")
13  public class WSException_Exception
14          extends java.lang.Exception {
15  
16      
17  
18  
19      private org.kuali.ole.select.testing.WSException faultInfo;
20  
21      
22  
23  
24  
25      public WSException_Exception(String message, org.kuali.ole.select.testing.WSException faultInfo) {
26          super(message);
27          this.faultInfo = faultInfo;
28      }
29  
30      
31  
32  
33  
34  
35      public WSException_Exception(String message, org.kuali.ole.select.testing.WSException faultInfo, Throwable cause) {
36          super(message, cause);
37          this.faultInfo = faultInfo;
38      }
39  
40      
41  
42  
43      public org.kuali.ole.select.testing.WSException getFaultInfo() {
44          return faultInfo;
45      }
46  
47  }