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