Package org.ametys.cms.indexing
Class IndexingException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- org.ametys.cms.indexing.IndexingException
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class IndexingException extends Exception
Signals that an error occurred during an indexing process.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description IndexingException()Constructs anIndexingException.IndexingException(String message)Constructs anIndexingExceptionwith the specified detail message.IndexingException(String message, Throwable cause)Constructs anIndexingExceptionwith the specified detail message and cause.IndexingException(Throwable cause)Constructs anIndexingExceptionwith the specified cause. 
- 
Method Summary
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
IndexingException
public IndexingException()
Constructs anIndexingException. 
- 
IndexingException
public IndexingException(String message)
Constructs anIndexingExceptionwith the specified detail message.- Parameters:
 message- The detail message.
 
- 
IndexingException
public IndexingException(String message, Throwable cause)
Constructs anIndexingExceptionwith the specified detail message and cause.- Parameters:
 message- The detail message.cause- The cause.
 
- 
IndexingException
public IndexingException(Throwable cause)
Constructs anIndexingExceptionwith the specified cause.- Parameters:
 cause- The cause.
 
 - 
 
 -