Package org.apache.ignite.lang
Class ErrorGroups.Common
java.lang.Object
org.apache.ignite.lang.ErrorGroups.Common
- Enclosing class:
- ErrorGroups
Common error group.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ErrorGroup
Common error group.static final int
Component not started error.static final int
Cursor is already closed error.static final int
Illegal argument or argument in a wrong format has been passed.static final int
This error code represents an internal error caused by faulty logic or coding in the Ignite codebase.static final int
Operation failed because a node has left the cluster.static final int
Node stopping error.static final int
This error code indicates that a method can't return anull
value due it's ambiguity (whether the value is absent or isnull
).static final int
Resource closing error.static final int
SSL can not be configured error.static final int
Can't marshal/unmarshal a user object. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
COMMON_ERR_GROUP
Common error group. -
NODE_STOPPING_ERR
public static final int NODE_STOPPING_ERRNode stopping error. -
COMPONENT_NOT_STARTED_ERR
public static final int COMPONENT_NOT_STARTED_ERRComponent not started error. -
ILLEGAL_ARGUMENT_ERR
public static final int ILLEGAL_ARGUMENT_ERRIllegal argument or argument in a wrong format has been passed. -
SSL_CONFIGURATION_ERR
public static final int SSL_CONFIGURATION_ERRSSL can not be configured error. -
NODE_LEFT_ERR
public static final int NODE_LEFT_ERROperation failed because a node has left the cluster. -
CURSOR_ALREADY_CLOSED_ERR
public static final int CURSOR_ALREADY_CLOSED_ERRCursor is already closed error. -
RESOURCE_CLOSING_ERR
public static final int RESOURCE_CLOSING_ERRResource closing error. -
USER_OBJECT_SERIALIZATION_ERR
public static final int USER_OBJECT_SERIALIZATION_ERRCan't marshal/unmarshal a user object. -
NULLABLE_VALUE_ERR
public static final int NULLABLE_VALUE_ERRThis error code indicates that a method can't return anull
value due it's ambiguity (whether the value is absent or isnull
). -
INTERNAL_ERR
public static final int INTERNAL_ERRThis error code represents an internal error caused by faulty logic or coding in the Ignite codebase. In general, this error code should be considered as a non-recoverable error
-
-
Constructor Details
-
Common
public Common()
-