jet.cs
Class ParseParamValuesException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by jet.JException
              extended by jet.JCException
                  extended by jet.cs.ParseParamValuesException
All Implemented Interfaces:
java.io.Serializable

public class ParseParamValuesException
extends jet.JCException

Signals that an error occurs while a string of parameter values is being parsed.

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class jet.JException
jet.JException.LogLevel
 
Constructor Summary
ParseParamValuesException(int msgKey)
          Constructs a new ParseParamValuesException with the specified index message.
ParseParamValuesException(int msgKey, java.lang.Object[] params, java.lang.Throwable cause)
          Constructs a new ParseParamValuesException with the specified message Key and cause.
ParseParamValuesException(int msgKey, java.lang.Throwable cause)
          Constructs a new ParseParamValuesException with the specified index message and cause.
ParseParamValuesException(java.lang.String message)
          Constructs a new ParseParamValuesException with the detail message.
ParseParamValuesException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new ParseParamValuesException with the specified detail message and cause.
 
Method Summary
 
Methods inherited from class jet.JCException
getErrorKey
 
Methods inherited from class jet.JException
getMessages, getThrowables, logTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ParseParamValuesException

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

Parameters:
msgKey - The message key in strJError, which is for finding the message and will be logged and shown to the user.
params - The parameters used for formatting the message string, and it can be null.
cause - The cause (which is saved for later retrieval by the getCause).

ParseParamValuesException

public ParseParamValuesException(int msgKey,
                                 java.lang.Throwable cause)
Constructs a new ParseParamValuesException with the specified index message and cause.

Parameters:
msgKey - The message key in StrJError, which is for finding the message and will be logged and shown to the user.
cause - The cause (which is saved for later retrieval by the getCause).

ParseParamValuesException

public ParseParamValuesException(int msgKey)
Constructs a new ParseParamValuesException with the specified index message.

Parameters:
msgKey - The message key in strJError, which is for finding the message and will be logged and shown to the user.

ParseParamValuesException

public ParseParamValuesException(java.lang.String message,
                                 java.lang.Throwable cause)
Constructs a new ParseParamValuesException with the specified detail message and cause.

Parameters:
message - The detail message, which will be logged and shown to the user.
cause - The cause (which is saved for later retrieval by the getCause).

ParseParamValuesException

public ParseParamValuesException(java.lang.String message)
Constructs a new ParseParamValuesException with the detail message.

Parameters:
message - The detail message.