Package com.attivio.sdk.error
Class WebServiceError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.WebServiceError
-
- All Implemented Interfaces:
java.io.Serializable
public final class WebServiceError extends ErrorCode
Error codes for web services- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
EXPIRATION_FAILED
WEBSERVICE-4 Failure during session expirationstatic ErrorCode
FAILED_SESSION_CLOSE
WEBSERVICE-2 Failed to close session.static ErrorCode
INVALID_SESSION_ID
WEBSERVICE-1 Invalid session id.static ErrorCode
NO_SESSION_REGISTERED
WEBSERVICE-3 No session with the specified id exists.static ErrorCode
SESSION_EXPIRED
WEBSERVICE-5 Session expired
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
INVALID_SESSION_ID
public static final ErrorCode INVALID_SESSION_ID
WEBSERVICE-1 Invalid session id.
-
FAILED_SESSION_CLOSE
public static final ErrorCode FAILED_SESSION_CLOSE
WEBSERVICE-2 Failed to close session.
-
NO_SESSION_REGISTERED
public static final ErrorCode NO_SESSION_REGISTERED
WEBSERVICE-3 No session with the specified id exists.
-
EXPIRATION_FAILED
public static final ErrorCode EXPIRATION_FAILED
WEBSERVICE-4 Failure during session expiration
-
SESSION_EXPIRED
public static final ErrorCode SESSION_EXPIRED
WEBSERVICE-5 Session expired
-
-