package at.gv.util.wsdl.szr; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 3.1.10 * 2021-09-15T12:11:21.305+02:00 * Generated source version: 3.1.10 */ @WebFault(name = "SZRException", targetNamespace = "urn:SZRServices") public class SZRException extends Exception { private at.gv.util.xsd.szr.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.SZRException szrException) { super(message); this.szrException = szrException; } public SZRException(String message, at.gv.util.xsd.szr.SZRException szrException, Throwable cause) { super(message, cause); this.szrException = szrException; } public at.gv.util.xsd.szr.SZRException getFaultInfo() { return this.szrException; } }