38 lines
1.2 KiB
Java
38 lines
1.2 KiB
Java
|
|
package com.sforce.soap.partner.fault;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public interface IApiFault {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : exceptionCode of type {urn:fault.partner.soap.sforce.com}ExceptionCode
|
||
|
|
* java type: com.sforce.soap.partner.fault.ExceptionCode
|
||
|
|
*/
|
||
|
|
|
||
|
|
public com.sforce.soap.partner.fault.ExceptionCode getExceptionCode();
|
||
|
|
|
||
|
|
public void setExceptionCode(com.sforce.soap.partner.fault.ExceptionCode exceptionCode);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : exceptionMessage of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getExceptionMessage();
|
||
|
|
|
||
|
|
public void setExceptionMessage(java.lang.String exceptionMessage);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : extendedErrorDetails of type {urn:partner.soap.sforce.com}ExtendedErrorDetails
|
||
|
|
* java type: com.sforce.soap.partner.ExtendedErrorDetails[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public com.sforce.soap.partner.IExtendedErrorDetails[] getExtendedErrorDetails();
|
||
|
|
|
||
|
|
public void setExtendedErrorDetails(com.sforce.soap.partner.IExtendedErrorDetails[] extendedErrorDetails);
|
||
|
|
|
||
|
|
|
||
|
|
}
|