org.jgap
Class InvalidConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jgap.InvalidConfigurationException
- All Implemented Interfaces:
- java.io.Serializable
public class InvalidConfigurationException
- extends java.lang.Exception
This exception is typically thrown when an invalid value has been
passed to a Configuration object, an attempt is made to lock a Configuration
object before all required settings have been provided, or an attempt is
made to alter a setting in a Configuration object after it has been
successfully locked.
- Since:
- 1.0
- See Also:
- Serialized Form
| 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 |
InvalidConfigurationException
public InvalidConfigurationException(java.lang.String a_message)
- Constructs a new InvalidConfigurationException instance with the
given error message.
- Parameters:
a_message - An error message describing the reason this exception
is being thrown- Since:
- 1.0
InvalidConfigurationException
public InvalidConfigurationException(java.lang.Throwable a_exception)
- Parameters:
a_exception - Throwable- Since:
- 3.2
InvalidConfigurationException
public InvalidConfigurationException(java.lang.String a_message,
java.lang.Throwable a_exception)
- Parameters:
a_message - An error message describing the reason this exception
is being throwna_exception - Throwable- Since:
- 3.5