package org.cagrid.gts.wsrf.stubs; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 2.6.3 * 2013-06-04T12:08:10.881-04:00 * Generated source version: 2.6.3 */ @WebFault(name = "InvalidTrustedAuthorityFault", targetNamespace = "http://cagrid.nci.nih.gov/GTS/types") public class InvalidTrustedAuthorityFaultFaultMessage extends Exception { private org.cagrid.gts.types.InvalidTrustedAuthorityFault invalidTrustedAuthorityFault; public InvalidTrustedAuthorityFaultFaultMessage() { super(); } public InvalidTrustedAuthorityFaultFaultMessage(String message) { super(message); } public InvalidTrustedAuthorityFaultFaultMessage(String message, Throwable cause) { super(message, cause); } public InvalidTrustedAuthorityFaultFaultMessage(String message, org.cagrid.gts.types.InvalidTrustedAuthorityFault invalidTrustedAuthorityFault) { super(message); this.invalidTrustedAuthorityFault = invalidTrustedAuthorityFault; } public InvalidTrustedAuthorityFaultFaultMessage(String message, org.cagrid.gts.types.InvalidTrustedAuthorityFault invalidTrustedAuthorityFault, Throwable cause) { super(message, cause); this.invalidTrustedAuthorityFault = invalidTrustedAuthorityFault; } public org.cagrid.gts.types.InvalidTrustedAuthorityFault getFaultInfo() { return this.invalidTrustedAuthorityFault; } }