public class InvalidUserSessionException
extends JSException
Constructor and Description |
---|
InvalidUserSessionException(int msg)
Constructs a new
InvalidUserSessionException with specified message,
the cause is not initialized. |
InvalidUserSessionException(int msgKey,
java.lang.Object[] params,
java.lang.Throwable cause)
Constructs a new throwable object with the specified message and cause.
|
InvalidUserSessionException(int msg,
java.lang.Throwable cause)
Constructs a new
InvalidUserSessionException with specified
message and cause. |
InvalidUserSessionException(java.lang.String msg)
Constructs a new
InvalidUserSessionException with specified message,
the cause is not initialized. |
public InvalidUserSessionException(int msgKey, java.lang.Object[] params, java.lang.Throwable cause)
msgKey
- the message key in strJError, for finding the message, 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 InvalidUserSessionException(int msg)
InvalidUserSessionException
with specified message,
the cause is not initialized.msg
- the detailed message.public InvalidUserSessionException(int msg, java.lang.Throwable cause)
InvalidUserSessionException
with specified
message and cause.msg
- the detailed messagecause
- the cause. null
is permitted, and it
indicates the cause is nonexistent or unknown.public InvalidUserSessionException(java.lang.String msg)
InvalidUserSessionException
with specified message,
the cause is not initialized.msg
- the detailed message.