Package com.attivio.sdk.error
Class DictionaryError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.DictionaryError
-
- All Implemented Interfaces:
java.io.Serializable
public final class DictionaryError extends ErrorCode
Contains the ErrorCodes for Dictionary implementations.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
ENTRY_CONVERSION_ERROR
DICTIONARY-4 Entry conversion errorstatic ErrorCode
ENTRY_FORMAT_ERROR
DICTIONARY-1 The format of a serialized entry is invalid.static ErrorCode
FAILED_TO_LOAD
DICTIONARY-2 Failed to load a dictionary from diskstatic ErrorCode
FAILED_TO_SAVE
DICTIONARY-3 Failed to save a dictionary to disk
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
ENTRY_FORMAT_ERROR
public static final ErrorCode ENTRY_FORMAT_ERROR
DICTIONARY-1 The format of a serialized entry is invalid.
-
FAILED_TO_LOAD
public static final ErrorCode FAILED_TO_LOAD
DICTIONARY-2 Failed to load a dictionary from disk
-
FAILED_TO_SAVE
public static final ErrorCode FAILED_TO_SAVE
DICTIONARY-3 Failed to save a dictionary to disk
-
ENTRY_CONVERSION_ERROR
public static final ErrorCode ENTRY_CONVERSION_ERROR
DICTIONARY-4 Entry conversion error
-
-