com.timeindexing.index
Class AddItemException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.timeindexing.index.TimeIndexException
              extended bycom.timeindexing.index.IndexItemException
                  extended bycom.timeindexing.index.AddItemException
All Implemented Interfaces:
java.io.Serializable

public class AddItemException
extends IndexItemException

An AddItemException is thrown when adding an item to an index fails.

See Also:
Serialized Form

Constructor Summary
AddItemException()
          Throw a AddItemException with no message.
AddItemException(java.lang.Exception e)
          Throw a AddItemException with an exception from the underlying cause.
AddItemException(java.lang.String s)
          Throw a AddItemException with a 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

AddItemException

public AddItemException()
Throw a AddItemException with no message.


AddItemException

public AddItemException(java.lang.String s)
Throw a AddItemException with a message.


AddItemException

public AddItemException(java.lang.Exception e)
Throw a AddItemException with an exception from the underlying cause.