container
Class InvalidEntryException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--container.InvalidEntryException
All Implemented Interfaces:
java.io.Serializable

public class InvalidEntryException
extends java.lang.RuntimeException

Runtime exception thrown when someone tries to modify/remove an entry in an adaptable data structure. If the entry isn't currently in the data structure (e.g., it's already been removed), then we'd better complain by throwing a different exception.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
InvalidEntryException()
           
InvalidEntryException(java.lang.String err)
           
 
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

InvalidEntryException

public InvalidEntryException()

InvalidEntryException

public InvalidEntryException(java.lang.String err)