1 2 package org.ejbca.core.protocol.ws.client.gen; 3 4 import javax.xml.ws.WebFault; 5 6 7 13 @WebFault(name = "IllegalQueryException", targetNamespace = "http://ws.protocol.core.ejbca.org/") 14 public class IllegalQueryException_Exception 15 extends Exception 16 { 17 18 22 private IllegalQueryException faultInfo; 23 24 29 public IllegalQueryException_Exception(String message, IllegalQueryException faultInfo) { 30 super(message); 31 this.faultInfo = faultInfo; 32 } 33 34 40 public IllegalQueryException_Exception(String message, IllegalQueryException faultInfo, Throwable cause) { 41 super(message, cause); 42 this.faultInfo = faultInfo; 43 } 44 45 50 public IllegalQueryException getFaultInfo() { 51 return faultInfo; 52 } 53 54 } 55 | Popular Tags |