View Javadoc

1   
2   /**
3    * GWESException.java
4    *
5    * This file was auto-generated from WSDL
6    * by the Apache Axis2 version: 1.5.1  Built on : Oct 19, 2009 (10:59:00 EDT)
7    */
8   
9   package net.kwfgrid.gwes.client;
10  
11  public class GWESException extends java.lang.Exception{
12      
13      private net.kwfgrid.gwes.client.GWESStub.GWESExceptionE faultMessage;
14  
15      
16          public GWESException() {
17              super("GWESException");
18          }
19  
20          public GWESException(java.lang.String s) {
21             super(s);
22          }
23  
24          public GWESException(java.lang.String s, java.lang.Throwable ex) {
25            super(s, ex);
26          }
27  
28          public GWESException(java.lang.Throwable cause) {
29              super(cause);
30          }
31      
32  
33      public void setFaultMessage(net.kwfgrid.gwes.client.GWESStub.GWESExceptionE msg){
34         faultMessage = msg;
35      }
36      
37      public net.kwfgrid.gwes.client.GWESStub.GWESExceptionE getFaultMessage(){
38         return faultMessage;
39      }
40  }
41