package ws.pub.ihis; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 2.6.16 * 2015-12-21T17:52:25.744+08:00 * Generated source version: 2.6.16 */ @WebFault(name = "Exception", targetNamespace = "http://ihis.pub.ws") public class Exception_Exception extends java.lang.Exception { private ws.pub.ihis.Exception exception; public Exception_Exception() { super(); } public Exception_Exception(String message) { super(message); } public Exception_Exception(String message, Throwable cause) { super(message, cause); } public Exception_Exception(String message, ws.pub.ihis.Exception exception) { super(message); this.exception = exception; } public Exception_Exception(String message, ws.pub.ihis.Exception exception, Throwable cause) { super(message, cause); this.exception = exception; } public ws.pub.ihis.Exception getFaultInfo() { return this.exception; } }