public class GenerateParameterException
extends JSException
| Constructor and Description | 
|---|
| GenerateParameterException(int msgKey)Constructs a new  GenerateParameterExceptionwith the specified message,
 the cause is not initialized. | 
| GenerateParameterException(int msgKey,
                          java.lang.Object[] params,
                          java.lang.Throwable cause)Constructs a new throwable with the specified detailed message and cause. | 
| GenerateParameterException(int msgKey,
                          java.lang.Throwable cause)Constructs a new  GenerateParameterExceptionwith the specified detailed
 message and cause. | 
| GenerateParameterException(java.lang.String msg)Constructs a new  GenerateParameterExceptionwith the specified
 message, the cause is not initialized. | 
| GenerateParameterException(java.lang.Throwable cause)Constructs a new  GenerateParameterExceptionwith the specified cause
 and anull | 
public GenerateParameterException(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 GenerateParameterException(int msgKey,
                                  java.lang.Throwable cause)
GenerateParameterException 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 GenerateParameterException(int msgKey)
GenerateParameterException with the specified message,
 the cause is not initialized.msgKey - the message key.public GenerateParameterException(java.lang.Throwable cause)
GenerateParameterException with the specified cause
 and a null message.cause - the cause.public GenerateParameterException(java.lang.String msg)
GenerateParameterException with the specified
 message, the cause is not initialized.msg - the detailed message.