wyvern.kernel.properties
Class IllegalValueException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bywyvern.kernel.properties.IllegalValueException
All Implemented Interfaces:
java.io.Serializable

public class IllegalValueException
extends java.lang.RuntimeException

This exception indicates that an illegal value was stored under a property name. For instance, an integer property might have a string stored under it accidentally.

Version:
1.0, Feb 04, 1998
Author:
Steve Yegge
See Also:
Serialized Form

Constructor Summary
IllegalValueException()
          Constructs an IllegalValueException with no detail message.
IllegalValueException(java.lang.String s)
          Constructs an IllegalValueException with the specified detail message.
 
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
 

Constructor Detail

IllegalValueException

public IllegalValueException()
Constructs an IllegalValueException with no detail message.


IllegalValueException

public IllegalValueException(java.lang.String s)
Constructs an IllegalValueException with the specified detail message.

Parameters:
s - the detail message.