Package com.attivio.sdk.error
Class ContentStoreError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.ContentStoreError
-
- All Implemented Interfaces:
java.io.Serializable
public final class ContentStoreError extends ErrorCode
Errors related to Content Stores.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
CONFIGURATION_ERROR
CONTENTSTORE-4, Invalid configuration for the content store.static ErrorCode
INVALID_URI
CONTENTSTORE-2, Invalid content store uri.static ErrorCode
IO_ERROR
CONTENTSTORE-3, Underlying store IO error.static ErrorCode
REMOTE_ERROR
CONTENTSTORE-1, Error communication with a remote content store.static ErrorCode
RESOURCE_ALREADY_REFERENCED
CONTENTSTORE-5, Attempt to create references to a resource which already has references.static ErrorCode
RESOURCE_HAS_REFERENCES
CONTENTSTORE-7, Attempt to delete a resource with references.static ErrorCode
RESOURCE_NOT_REFERENCED
CONTENTSTORE-8, Attempt to delete a resource that has no reference information.static ErrorCode
RESOURCE_REFERENCES_EXHAUSTED
CONTENTSTORE-6, Attempt to remove a reference to a resource which is out of references.
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
REMOTE_ERROR
public static final ErrorCode REMOTE_ERROR
CONTENTSTORE-1, Error communication with a remote content store.
-
INVALID_URI
public static final ErrorCode INVALID_URI
CONTENTSTORE-2, Invalid content store uri.
-
IO_ERROR
public static final ErrorCode IO_ERROR
CONTENTSTORE-3, Underlying store IO error.
-
CONFIGURATION_ERROR
public static final ErrorCode CONFIGURATION_ERROR
CONTENTSTORE-4, Invalid configuration for the content store.
-
RESOURCE_ALREADY_REFERENCED
public static final ErrorCode RESOURCE_ALREADY_REFERENCED
CONTENTSTORE-5, Attempt to create references to a resource which already has references.
-
RESOURCE_REFERENCES_EXHAUSTED
public static final ErrorCode RESOURCE_REFERENCES_EXHAUSTED
CONTENTSTORE-6, Attempt to remove a reference to a resource which is out of references.
-
RESOURCE_HAS_REFERENCES
public static final ErrorCode RESOURCE_HAS_REFERENCES
CONTENTSTORE-7, Attempt to delete a resource with references.
-
RESOURCE_NOT_REFERENCED
public static final ErrorCode RESOURCE_NOT_REFERENCED
CONTENTSTORE-8, Attempt to delete a resource that has no reference information.
-
-