Package com.attivio.sdk.error
Class TriggerError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.TriggerError
-
- All Implemented Interfaces:
java.io.Serializable
public final class TriggerError extends ErrorCode
Contains the ErrorCodes forTriggerApi
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
COMPILE_ERROR
TRIGGER-7 An error occurred while compiling a dictionary.static ErrorCode
CONTROLLER_ERROR
TRIGGER-18 Error in the UI controller.static ErrorCode
DELETE_IN_PROGRESS
TRIGGER-14 Operation rejected due to dictionary deletion in progress.static ErrorCode
DICTIONARY_EXISTS
TRIGGER-1 A dictionary with the same name already exists.static ErrorCode
DICTIONARY_NOT_FOUND
TRIGGER-2 A dictionary with the specified name could not be found.static ErrorCode
EXPORT_ERROR
TRIGGER-5 An error occurred while exporting the dictionary.static ErrorCode
ILLEGAL_QUERY
TRIGGER-17 An illegal query has been specified for a trigger.static ErrorCode
ILLEGAL_VALUE
TRIGGER-16 An illegal value has been specified.static ErrorCode
IMPORT_ERROR
TRIGGER-6 An error occurred while importing the dictionary.static ErrorCode
IMPORT_IN_PROGRESS
TRIGGER-15 Operation rejected due to dictionary import in progress.static ErrorCode
NOT_COMPILED
TRIGGER-8 Dictionary has not been compiled yet.static ErrorCode
NOT_PUBLISHED
TRIGGER-9 Dictionary has not been published yet.static ErrorCode
PROCESS_ERROR
TRIGGER-11 An error occurred while processing a document.static ErrorCode
READ_ERROR
TRIGGER-12 An error occurred while reading from the store.static ErrorCode
SCHEMA_ERROR
TRIGGER-10 Error initializing schema.static ErrorCode
TRIGGER_EXISTS
TRIGGER-3 A trigger definition with the same name already exists.static ErrorCode
TRIGGER_NOT_FOUND
TRIGGER-4 A trigger definition with the specified name could not be found.static ErrorCode
WRITE_ERROR
TRIGGER-13 An error occurred while writing to the store.
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
DICTIONARY_EXISTS
public static final ErrorCode DICTIONARY_EXISTS
TRIGGER-1 A dictionary with the same name already exists.
-
DICTIONARY_NOT_FOUND
public static final ErrorCode DICTIONARY_NOT_FOUND
TRIGGER-2 A dictionary with the specified name could not be found.
-
TRIGGER_EXISTS
public static final ErrorCode TRIGGER_EXISTS
TRIGGER-3 A trigger definition with the same name already exists.
-
TRIGGER_NOT_FOUND
public static final ErrorCode TRIGGER_NOT_FOUND
TRIGGER-4 A trigger definition with the specified name could not be found.
-
EXPORT_ERROR
public static final ErrorCode EXPORT_ERROR
TRIGGER-5 An error occurred while exporting the dictionary.
-
IMPORT_ERROR
public static final ErrorCode IMPORT_ERROR
TRIGGER-6 An error occurred while importing the dictionary.
-
COMPILE_ERROR
public static final ErrorCode COMPILE_ERROR
TRIGGER-7 An error occurred while compiling a dictionary.
-
NOT_COMPILED
public static final ErrorCode NOT_COMPILED
TRIGGER-8 Dictionary has not been compiled yet.
-
NOT_PUBLISHED
public static final ErrorCode NOT_PUBLISHED
TRIGGER-9 Dictionary has not been published yet.
-
SCHEMA_ERROR
public static final ErrorCode SCHEMA_ERROR
TRIGGER-10 Error initializing schema.
-
PROCESS_ERROR
public static final ErrorCode PROCESS_ERROR
TRIGGER-11 An error occurred while processing a document.
-
READ_ERROR
public static final ErrorCode READ_ERROR
TRIGGER-12 An error occurred while reading from the store.
-
WRITE_ERROR
public static final ErrorCode WRITE_ERROR
TRIGGER-13 An error occurred while writing to the store.
-
DELETE_IN_PROGRESS
public static final ErrorCode DELETE_IN_PROGRESS
TRIGGER-14 Operation rejected due to dictionary deletion in progress.
-
IMPORT_IN_PROGRESS
public static final ErrorCode IMPORT_IN_PROGRESS
TRIGGER-15 Operation rejected due to dictionary import in progress.
-
ILLEGAL_VALUE
public static final ErrorCode ILLEGAL_VALUE
TRIGGER-16 An illegal value has been specified.
-
ILLEGAL_QUERY
public static final ErrorCode ILLEGAL_QUERY
TRIGGER-17 An illegal query has been specified for a trigger.
-
CONTROLLER_ERROR
public static final ErrorCode CONTROLLER_ERROR
TRIGGER-18 Error in the UI controller.
-
-