package com.sforce.ws; import javax.xml.namespace.QName; public class SoapFaultException extends ConnectionException { private static final long serialVersionUID = 6727192150757263283L; private QName faultCode; public SoapFaultException() {} public SoapFaultException(QName faultCode, String faultString) { super(faultString); this.faultCode = faultCode; } public SoapFaultException(QName faultCode, String faultString, Throwable cause) { super(faultString, cause); this.faultCode = faultCode; } public QName getFaultCode() { return this.faultCode; } public void setFaultCode(QName fc) { this.faultCode = fc; } }