Enum Class InvokeHostFunctionResultCode

java.lang.Object
java.lang.Enum<InvokeHostFunctionResultCode>
org.stellar.sdk.xdr.InvokeHostFunctionResultCode
All Implemented Interfaces:
Serializable, Comparable<InvokeHostFunctionResultCode>, Constable

public enum InvokeHostFunctionResultCode extends Enum<InvokeHostFunctionResultCode>
InvokeHostFunctionResultCode's original definition in the XDR file is:
 enum InvokeHostFunctionResultCode
 {
     // codes considered as "success" for the operation
     INVOKE_HOST_FUNCTION_SUCCESS = 0,

     // codes considered as "failure" for the operation
     INVOKE_HOST_FUNCTION_MALFORMED = -1,
     INVOKE_HOST_FUNCTION_TRAPPED = -2,
     INVOKE_HOST_FUNCTION_RESOURCE_LIMIT_EXCEEDED = -3,
     INVOKE_HOST_FUNCTION_ENTRY_ARCHIVED = -4,
     INVOKE_HOST_FUNCTION_INSUFFICIENT_REFUNDABLE_FEE = -5
 };