Package com.attivio.sdk.error
Class EventStoreError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.EventStoreError
-
- All Implemented Interfaces:
java.io.Serializable
public class EventStoreError extends ErrorCode
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
ACKNOWLEDGE_ERROR
EVENTSTORE-2, Failed to acknowledge an event.static ErrorCode
ADD_EVENTS_ERROR
EVENTSTORE-4, Failed to add an event.static ErrorCode
COUNT_EVENT_ERROR
EVENTSTORE-1, Failed to count system events.static ErrorCode
EVENT_ID_GENERATION_ERROR
EVENTSTORE-5, Failed to generate event IDstatic ErrorCode
EVENT_QUERY_CLOSED_ERROR
EVENTSTORE-6, Event query is closedstatic ErrorCode
GET_EVENTS_ERROR
EVENTSTORE-3, Failed to extract events.
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
COUNT_EVENT_ERROR
public static final ErrorCode COUNT_EVENT_ERROR
EVENTSTORE-1, Failed to count system events.
-
ACKNOWLEDGE_ERROR
public static final ErrorCode ACKNOWLEDGE_ERROR
EVENTSTORE-2, Failed to acknowledge an event.
-
GET_EVENTS_ERROR
public static final ErrorCode GET_EVENTS_ERROR
EVENTSTORE-3, Failed to extract events.
-
ADD_EVENTS_ERROR
public static final ErrorCode ADD_EVENTS_ERROR
EVENTSTORE-4, Failed to add an event.
-
EVENT_ID_GENERATION_ERROR
public static final ErrorCode EVENT_ID_GENERATION_ERROR
EVENTSTORE-5, Failed to generate event ID
-
EVENT_QUERY_CLOSED_ERROR
public static final ErrorCode EVENT_QUERY_CLOSED_ERROR
EVENTSTORE-6, Event query is closed
-
-