Package com.attivio.sdk.error
Class ClientError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.ClientError
-
- All Implemented Interfaces:
java.io.Serializable
public final class ClientError extends ErrorCode
Error codes for Client API- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
CLIENT_ERROR
CLIENT-1, Generic Client Errorstatic ErrorCode
FATAL_CLIENT_ERROR
CLIENT-3, Fatal client error, this feed should stopstatic ErrorCode
INTERNAL_ERROR_CALLS_OUT_OF_ORDER
CLIENT-4, API calls made out of orderstatic ErrorCode
MESSAGE_RESULT_POLLING_ERROR
CLIENT-2, Message result polling error.
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
CLIENT_ERROR
public static final ErrorCode CLIENT_ERROR
CLIENT-1, Generic Client Error
-
MESSAGE_RESULT_POLLING_ERROR
public static final ErrorCode MESSAGE_RESULT_POLLING_ERROR
CLIENT-2, Message result polling error.
-
FATAL_CLIENT_ERROR
public static final ErrorCode FATAL_CLIENT_ERROR
CLIENT-3, Fatal client error, this feed should stop
-
INTERNAL_ERROR_CALLS_OUT_OF_ORDER
public static final ErrorCode INTERNAL_ERROR_CALLS_OUT_OF_ORDER
CLIENT-4, API calls made out of order
-
-