atg.repository.search.indexing
Class IndexingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by atg.repository.search.indexing.IndexingException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ConfigurationClaimedIndexingException

public class IndexingException
extends java.lang.Exception

An indexing specific exception class.

Created: March 04 2005

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Constructor Summary
IndexingException(java.lang.String pMessage)
          Construct a new IndexingException with the specified message and cause.
IndexingException(java.lang.String pMessage, java.lang.Throwable pCause)
          Construct a new IndexingException with the specified message and cause.
IndexingException(java.lang.Throwable pCause)
          Construct a new IndexingException with the cause.
 
Method Summary
 
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
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string

Constructor Detail

IndexingException

public IndexingException(java.lang.String pMessage)
Construct a new IndexingException with the specified message and cause.

Parameters:
pMessage - The texual message describing the exception.

IndexingException

public IndexingException(java.lang.Throwable pCause)
Construct a new IndexingException with the cause.

Parameters:
pCause - the underlying/wrapped exception.

IndexingException

public IndexingException(java.lang.String pMessage,
                         java.lang.Throwable pCause)
Construct a new IndexingException with the specified message and cause.

Parameters:
pMessage - The texual message describing the exception.
pCause - the underlying/wrapped exception.