KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > ws > client > gen > IllegalQueryException_Exception


1
2 package org.ejbca.core.protocol.ws.client.gen;
3
4 import javax.xml.ws.WebFault;
5
6
7 /**
8  * This class was generated by the JAXWS SI.
9  * JAX-WS RI 2.0_01-b59-fcs
10  * Generated source version: 2.0
11  *
12  */

13 @WebFault(name = "IllegalQueryException", targetNamespace = "http://ws.protocol.core.ejbca.org/")
14 public class IllegalQueryException_Exception
15     extends Exception JavaDoc
16 {
17
18     /**
19      * Java type that goes as soapenv:Fault detail element.
20      *
21      */

22     private IllegalQueryException faultInfo;
23
24     /**
25      *
26      * @param faultInfo
27      * @param message
28      */

29     public IllegalQueryException_Exception(String JavaDoc message, IllegalQueryException faultInfo) {
30         super(message);
31         this.faultInfo = faultInfo;
32     }
33
34     /**
35      *
36      * @param faultInfo
37      * @param message
38      * @param cause
39      */

40     public IllegalQueryException_Exception(String JavaDoc message, IllegalQueryException faultInfo, Throwable JavaDoc cause) {
41         super(message, cause);
42         this.faultInfo = faultInfo;
43     }
44
45     /**
46      *
47      * @return
48      * returns fault bean: org.ejbca.core.protocol.ws.client.gen.IllegalQueryException
49      */

50     public IllegalQueryException getFaultInfo() {
51         return faultInfo;
52     }
53
54 }
55
Popular Tags