public interface IEssException extends IEssBaseObject
Modifier and Type | Field and Description |
---|---|
static int |
ERROR_CLUSTER_NODE_DOWN
Error ID: Error when the current cluster node is disabled or down.
|
static int |
ERROR_CONCURRENT_SESSION_ACCESS
Error ID: Error when a request comes for a session that is already
executing a request.
|
static int |
ERROR_INVALID_SESSION_ID
Error: Invalid session id.
|
static int |
ERROR_INVALID_USER_OR_PASSWORD
Error: Invalid user name or password.
|
static int |
ERROR_NATIVE_FROM_OLAP_SERVER
Error: OLAP server native error.
|
static int |
ERROR_NEW_PROP_VALUE_SAME_AS_OLD
Error: New value for a property cannot be same as the old.
|
static int |
ERROR_OBJECT_ALREADY_EXISTS
Error: Object already exists.
|
static int |
ERROR_OBJECT_IS_CLOSED
Error: Object is closed.
|
static int |
ERROR_OBJECT_NOT_FOUND
Error: Object is not found.
|
static int |
ERROR_UNCATEGORIZED
The error is not categorized yet.
|
Modifier and Type | Method and Description |
---|---|
int |
getCode()
Gets the error code.
|
java.lang.String |
getMessage()
Gets the error message.
|
int |
getNativeCode()
Gets the native error code.
|
java.lang.String |
getNativeMessage()
Gets the native error message.
|
void |
setCode(int code)
Sets the error code.
|
void |
setMessage(java.lang.String message)
Sets the error message.
|
void |
setNativeCode(int code)
Sets the native error code.
|
void |
setNativeMessage(java.lang.String message)
Sets the native error message.
|
static final int ERROR_OBJECT_NOT_FOUND
static final int ERROR_OBJECT_ALREADY_EXISTS
static final int ERROR_OBJECT_IS_CLOSED
static final int ERROR_NATIVE_FROM_OLAP_SERVER
static final int ERROR_UNCATEGORIZED
static final int ERROR_INVALID_SESSION_ID
static final int ERROR_NEW_PROP_VALUE_SAME_AS_OLD
static final int ERROR_INVALID_USER_OR_PASSWORD
static final int ERROR_CLUSTER_NODE_DOWN
static final int ERROR_CONCURRENT_SESSION_ACCESS
int getCode()
void setCode(int code)
code
- The error code.java.lang.String getMessage()
void setMessage(java.lang.String message)
message
- The error message.int getNativeCode()
void setNativeCode(int code)
code
- The native error code.java.lang.String getNativeMessage()
void setNativeMessage(java.lang.String message)
message
- The native error message.