package org.savara.purchasing.creditagency; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 2.4.0 * 2012-09-02T18:03:55.836+01:00 * Generated source version: 2.4.0 * */ @WebFault(name = "CustomerUnknown", targetNamespace = "http://www.jboss.org/examples/creditAgency") public class CustomerUnknownFault extends Exception { public static final long serialVersionUID = 20120902180355L; private org.jboss.examples.creditagency.CustomerUnknownType customerUnknown; public CustomerUnknownFault() { super(); } public CustomerUnknownFault(String message) { super(message); } public CustomerUnknownFault(String message, Throwable cause) { super(message, cause); } public CustomerUnknownFault(String message, org.jboss.examples.creditagency.CustomerUnknownType customerUnknown) { super(message); this.customerUnknown = customerUnknown; } public CustomerUnknownFault(String message, org.jboss.examples.creditagency.CustomerUnknownType customerUnknown, Throwable cause) { super(message, cause); this.customerUnknown = customerUnknown; } public org.jboss.examples.creditagency.CustomerUnknownType getFaultInfo() { return this.customerUnknown; } }