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
Signals that an error occurred during an indexing process.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anIndexingException
.IndexingException
(String message) Constructs anIndexingException
with the specified detail message.IndexingException
(String message, Throwable cause) Constructs anIndexingException
with the specified detail message and cause.IndexingException
(Throwable cause) Constructs anIndexingException
with 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 Details
-
IndexingException
public IndexingException()Constructs anIndexingException
. -
IndexingException
Constructs anIndexingException
with the specified detail message.- Parameters:
message
- The detail message.
-
IndexingException
Constructs anIndexingException
with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause.
-
IndexingException
Constructs anIndexingException
with the specified cause.- Parameters:
cause
- The cause.
-