View Javadoc

1   package org.fosstrak.epcis.soap;
2   
3   import javax.xml.ws.WebFault;
4   
5   /**
6    * This class was generated by Apache CXF (incubator) 2.0.4-incubator Wed Jan 30
7    * 15:43:44 CET 2008 Generated source version: 2.0.4-incubator
8    */
9   
10  @WebFault(name = "QueryParameterException", targetNamespace = "urn:epcglobal:epcis-query:xsd:1")
11  public class QueryParameterExceptionResponse extends Exception {
12      public static final long serialVersionUID = 20080130154344L;
13  
14      private org.fosstrak.epcis.model.QueryParameterException queryParameterException;
15  
16      public QueryParameterExceptionResponse() {
17          super();
18      }
19  
20      public QueryParameterExceptionResponse(String message) {
21          super(message);
22      }
23  
24      public QueryParameterExceptionResponse(String message, Throwable cause) {
25          super(message, cause);
26      }
27  
28      public QueryParameterExceptionResponse(String message,
29              org.fosstrak.epcis.model.QueryParameterException queryParameterException) {
30          super(message);
31          this.queryParameterException = queryParameterException;
32      }
33  
34      public QueryParameterExceptionResponse(String message,
35              org.fosstrak.epcis.model.QueryParameterException queryParameterException, Throwable cause) {
36          super(message, cause);
37          this.queryParameterException = queryParameterException;
38      }
39  
40      public org.fosstrak.epcis.model.QueryParameterException getFaultInfo() {
41          return this.queryParameterException;
42      }
43  }