jet.server.api.exception
Class BadRealmException

java.lang.Object
  extended by JSException
      extended by jet.server.api.exception.BadRealmException

public class BadRealmException
extends JSException

Bad Realm Exception


Constructor Summary
BadRealmException(int msgKey)
          Construct a new BadRealmException with specified message, the cause is not initialized.
BadRealmException(int msgKey, java.lang.Object[] params, java.lang.Throwable cause)
          Constructs a new throwable with the specified detail message and cause.
BadRealmException(int msgKey, java.lang.Throwable cause)
          Construct a new BadRealmException with specified detail message and cause.
BadRealmException(java.lang.String message)
           
BadRealmException(java.lang.Throwable cause)
          Construct a new BadRealmException with specified cause and a null detail message.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BadRealmException

public BadRealmException(int msgKey,
                         java.lang.Object[] params,
                         java.lang.Throwable cause)
Constructs a new throwable with the specified detail message and cause.

Parameters:
msgKey - the message key in strJError, for find the message, and will be loged and showed to user.
params - the parameters used for format the message string, can be null.
cause - the cause (which is saved for later retrieval by the getCause.

BadRealmException

public BadRealmException(int msgKey,
                         java.lang.Throwable cause)
Construct a new BadRealmException with specified detail message and cause.

Parameters:
msgKey - the message key
cause - the cause. A null is permitted, and it indicates the cause is nonexistent or unknown.

BadRealmException

public BadRealmException(int msgKey)
Construct a new BadRealmException with specified message, the cause is not initialized.

Parameters:
msgKey - the message key

BadRealmException

public BadRealmException(java.lang.Throwable cause)
Construct a new BadRealmException with specified cause and a null detail message.

Parameters:
cause - the cause.

BadRealmException

public BadRealmException(java.lang.String message)