public final class ChatError
extends java.lang.Object
| Constructor and Description |
|---|
ChatError(java.lang.String code,
java.lang.String message,
java.lang.String target,
ChatError innerError,
java.util.List<ChatError> details)
Initializes a new instance of the ChatError class.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode()
Get the code property: The error code.
|
java.util.List<ChatError> |
getDetails()
Get the details property: Further details about specific errors that led to this error.
|
ChatError |
getInnerError()
Get the innerError property: The inner error if any.
|
java.lang.String |
getMessage()
Get the message property: The error message.
|
java.lang.String |
getTarget()
Get the target property: The error target.
|
public ChatError(java.lang.String code,
java.lang.String message,
java.lang.String target,
ChatError innerError,
java.util.List<ChatError> details)
code - The error code.message - The error message.target - The error target.innerError - The inner error if any.details - Further details about specific errors that led to this error.public java.lang.String getCode()
public java.lang.String getMessage()
public java.lang.String getTarget()
public java.util.List<ChatError> getDetails()
public ChatError getInnerError()