package at.gv.util.wsdl.szr_v4; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 3.1.10 * 2020-02-20T15:37:46.013+01:00 * Generated source version: 3.1.10 */ @WebFault(name = "SZRException", targetNamespace = "urn:SZRServices") public class SZRException extends Exception { private at.gv.util.xsd.szr_v4.SZRException szrException; public SZRException() { super(); } public SZRException(String message) { super(message); } public SZRException(String message, Throwable cause) { super(message, cause); } public SZRException(String message, at.gv.util.xsd.szr_v4.SZRException szrException) { super(message); this.szrException = szrException; } public SZRException(String message, at.gv.util.xsd.szr_v4.SZRException szrException, Throwable cause) { super(message, cause); this.szrException = szrException; } public at.gv.util.xsd.szr_v4.SZRException getFaultInfo() { return this.szrException; } }