jdsl.core.api
Class InvalidKeyException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--jdsl.core.api.CoreException
                          |
                          +--jdsl.core.api.InvalidKeyException

public class InvalidKeyException
extends CoreException

Signals that an invalid key has been passed to a KeyBasedContainer class. An invalid key is a key which is not recognized by a Comparator.

Author:
John Kloss
See Also:
Comparator, Serialized Form

Constructor Summary
InvalidKeyException(java.lang.String message)
          Constructs an InvalidKeyException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidKeyException

public InvalidKeyException(java.lang.String message)
Constructs an InvalidKeyException with the specified detail message. message is a String that describes this particular exception.
Parameters:
message - A string describing the details of the particular exception.