package at.gv.util.wsdl.mis.usp_v2; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 3.1.10 * 2018-09-12T08:57:26.619+02:00 * Generated source version: 3.1.10 */ @WebFault(name = "CreateMandateFault", targetNamespace = "http://eai.brz.gv.at/services/vdds/synchronisation") public class CreateMandateFault extends Exception { private at.gv.util.xsd.mis.usp_v2.eai.common.ResultType createMandateFault; public CreateMandateFault() { super(); } public CreateMandateFault(String message) { super(message); } public CreateMandateFault(String message, Throwable cause) { super(message, cause); } public CreateMandateFault(String message, at.gv.util.xsd.mis.usp_v2.eai.common.ResultType createMandateFault) { super(message); this.createMandateFault = createMandateFault; } public CreateMandateFault(String message, at.gv.util.xsd.mis.usp_v2.eai.common.ResultType createMandateFault, Throwable cause) { super(message, cause); this.createMandateFault = createMandateFault; } public at.gv.util.xsd.mis.usp_v2.eai.common.ResultType getFaultInfo() { return this.createMandateFault; } }