View Javadoc
1   
2   package org.kuali.ole.select.testing;
3   
4   import javax.xml.ws.WebFault;
5   
6   
7   /**
8    * This class was generated by the JAX-WS RI.
9    * JAX-WS RI 2.1.6 in JDK 6
10   * Generated source version: 2.1
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       * Java type that goes as soapenv:Fault detail element.
18       */
19      private org.kuali.ole.select.testing.WSException faultInfo;
20  
21      /**
22       * @param message
23       * @param faultInfo
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       * @param message
32       * @param faultInfo
33       * @param cause
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       * @return returns fault bean: org.kuali.ole.select.testing.Exception
42       */
43      public org.kuali.ole.select.testing.WSException getFaultInfo() {
44          return faultInfo;
45      }
46  
47  }