public class TaskListenerException
extends JSException
| Constructor and Description |
|---|
TaskListenerException(int msgKey)
Constructs a new
TaskListenerException with the specified
message, the cause is not initialized. |
TaskListenerException(int msgKey,
java.lang.Object[] params,
java.lang.Throwable cause)
Constructs a new throwable with the specified detailed message and cause.
|
TaskListenerException(int msgKey,
java.lang.Throwable cause)
Constructs a new
TaskListenerException with the specified
detailed message and cause. |
TaskListenerException(java.lang.String message)
Constructs a new
TaskListenerException with the specified
message, the cause is not initialized. |
TaskListenerException(java.lang.Throwable cause)
Constructs a new
TaskListenerException with the specified cause
and a null |
public TaskListenerException(int msgKey,
java.lang.Object[] params,
java.lang.Throwable cause)
msgKey - the message key in strJError, for finding the message, and which will
be logged and shown to user.params - the parameters used for formatting the message string, which can be
null.cause - the cause which is saved for later retrieval by the getCause.public TaskListenerException(int msgKey,
java.lang.Throwable cause)
TaskListenerException with the specified
detailed message and cause.msgKey - the message keycause - the cause. A null is permitted, and it
indicates the cause is nonexistent or unknown.public TaskListenerException(int msgKey)
TaskListenerException with the specified
message, the cause is not initialized.msgKey - the message keypublic TaskListenerException(java.lang.Throwable cause)
TaskListenerException with the specified cause
and a null message.cause - the cause.public TaskListenerException(java.lang.String message)
TaskListenerException with the specified
message, the cause is not initialized.msg - the detailed message.