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 2.2.9 Tue Jul 06 14:13:27 CEST 2010
7    * Generated source version: 2.2.9
8    */
9   
10  @WebFault(name = "QueryTooLargeException", targetNamespace = "urn:epcglobal:epcis-query:xsd:1")
11  public class QueryTooLargeExceptionResponse extends Exception {
12      public static final long serialVersionUID = 20100706141327L;
13  
14      private org.fosstrak.epcis.model.QueryTooLargeException queryTooLargeException;
15  
16      public QueryTooLargeExceptionResponse() {
17          super();
18      }
19  
20      public QueryTooLargeExceptionResponse(String message) {
21          super(message);
22      }
23  
24      public QueryTooLargeExceptionResponse(String message, Throwable cause) {
25          super(message, cause);
26      }
27  
28      public QueryTooLargeExceptionResponse(String message,
29              org.fosstrak.epcis.model.QueryTooLargeException queryTooLargeException) {
30          super(message);
31          this.queryTooLargeException = queryTooLargeException;
32      }
33  
34      public QueryTooLargeExceptionResponse(String message,
35              org.fosstrak.epcis.model.QueryTooLargeException queryTooLargeException, Throwable cause) {
36          super(message, cause);
37          this.queryTooLargeException = queryTooLargeException;
38      }
39  
40      public org.fosstrak.epcis.model.QueryTooLargeException getFaultInfo() {
41          return this.queryTooLargeException;
42      }
43  }