exception
Class InvalidConfigParameterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by exception.InvalidConfigParameterException
All Implemented Interfaces:
java.io.Serializable

public class InvalidConfigParameterException
extends java.lang.Exception

This exception is thrown if a invalid config parameter value was given.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
           
 
Constructor Summary
InvalidConfigParameterException()
          Throw an empty exception
InvalidConfigParameterException(java.lang.String message)
          Throw an exception with the specified message
InvalidConfigParameterException(java.lang.String parameter, java.lang.String value)
          Throw an exception.
 
Method Summary
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

InvalidConfigParameterException

public InvalidConfigParameterException()
Throw an empty exception


InvalidConfigParameterException

public InvalidConfigParameterException(java.lang.String message)
Throw an exception with the specified message

Parameters:
message - the message to be thrown

InvalidConfigParameterException

public InvalidConfigParameterException(java.lang.String parameter,
                                       java.lang.String value)
Throw an exception. The arguments passed are the parameter name for which a wrong value was given, the message is constructed automatically from these two parameters.

Parameters:
parameter - the parameter name
value - the invalid value