package at.gv.util.wsdl.ur_V5; import javax.xml.ws.WebFault; import at.gv.util.xsd.ur_V5.xmlsw.CustomFaultType; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.2.4-b01 * Generated source version: 2.2 * */ @WebFault(name = "XmlSwFault", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#") public class XmlSwFault extends Exception { /** * Java type that goes as soapenv:Fault detail element. * */ private CustomFaultType faultInfo; /** * * @param message * @param faultInfo */ public XmlSwFault(String message, CustomFaultType faultInfo) { super(message); this.faultInfo = faultInfo; } /** * * @param message * @param faultInfo * @param cause */ public XmlSwFault(String message, CustomFaultType faultInfo, Throwable cause) { super(message, cause); this.faultInfo = faultInfo; } /** * * @return * returns fault bean: at.gv.util.xsd.ur_V5.xmlsw.CustomFaultType */ public CustomFaultType getFaultInfo() { return faultInfo; } }