package at.gv.util.wsdl.mis_v2; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 3.1.10 * 2019-09-30T12:17:52.990+02:00 * Generated source version: 3.1.10 */ @WebFault(name = "GetMandatesError", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd") public class GetMandatesError extends Exception { private at.gv.util.xsd.mis_v2.GetMandatesErrorType getMandatesError; public GetMandatesError() { super(); } public GetMandatesError(String message) { super(message); } public GetMandatesError(String message, Throwable cause) { super(message, cause); } public GetMandatesError(String message, at.gv.util.xsd.mis_v2.GetMandatesErrorType getMandatesError) { super(message); this.getMandatesError = getMandatesError; } public GetMandatesError(String message, at.gv.util.xsd.mis_v2.GetMandatesErrorType getMandatesError, Throwable cause) { super(message, cause); this.getMandatesError = getMandatesError; } public at.gv.util.xsd.mis_v2.GetMandatesErrorType getFaultInfo() { return this.getMandatesError; } }