Package com.attivio.sdk.error
Class DocumentProcessorError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.DocumentProcessorError
-
- All Implemented Interfaces:
java.io.Serializable
public final class DocumentProcessorError extends ErrorCode
Contains error codes related to document processing. There are a lot of restrictions around document processing so the errors are relatively specific in an attempt to make those restrictions clear to users who violate them.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
INDEXER_WORKFLOW_FOUND
DOCUMENT_PROCESSOR-2 Indexer workflow found.static ErrorCode
INVALID_DOCUMENT_TRANSFORMER
DOCUMENT_PROCESSOR-1 Invalid document transformer for document processing.static ErrorCode
INVALID_OUTPUT_TYPE
DOCUMENT_PROCESSOR-4 Invalid output type for document processingstatic ErrorCode
INVALID_STAGE_TYPE
DOCUMENT_PROCESSOR-3 Indexer stage type for document processingstatic ErrorCode
MULTI_DOCUMENT_OUTPUT
DOCUMENT_PROCESSOR-5 More than on document present in the output for document processingstatic ErrorCode
PROCESSING_ERROR
DOCUMENT_PROCESSOR-6 There was an error during the actual processing of the document
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
INVALID_DOCUMENT_TRANSFORMER
public static final ErrorCode INVALID_DOCUMENT_TRANSFORMER
DOCUMENT_PROCESSOR-1 Invalid document transformer for document processing.
-
INDEXER_WORKFLOW_FOUND
public static final ErrorCode INDEXER_WORKFLOW_FOUND
DOCUMENT_PROCESSOR-2 Indexer workflow found. This workflow is not allowed for document processing
-
INVALID_STAGE_TYPE
public static final ErrorCode INVALID_STAGE_TYPE
DOCUMENT_PROCESSOR-3 Indexer stage type for document processing
-
INVALID_OUTPUT_TYPE
public static final ErrorCode INVALID_OUTPUT_TYPE
DOCUMENT_PROCESSOR-4 Invalid output type for document processing
-
MULTI_DOCUMENT_OUTPUT
public static final ErrorCode MULTI_DOCUMENT_OUTPUT
DOCUMENT_PROCESSOR-5 More than on document present in the output for document processing
-
PROCESSING_ERROR
public static final ErrorCode PROCESSING_ERROR
DOCUMENT_PROCESSOR-6 There was an error during the actual processing of the document
-
-