Class IndexException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- nl.gx.webmanager.services.contentindex.index.api.IndexException
-
- All Implemented Interfaces:
Serializable
public final class IndexException extends Exception
The Class IndexException.
API specific exception wrapping the underlying cause and generated when an exception occurs during the index process.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexException(String message)
Instantiates a new IndexException.IndexException(String message, Throwable throwable)
Instantiates a new IndexException.IndexException(Throwable throwable)
Instantiates a new IndexException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IndexException
public IndexException(String message, Throwable throwable)
Instantiates a new IndexException.- Parameters:
message
- the message being wrapped.throwable
- the throwable being wrapped.
-
IndexException
public IndexException(Throwable throwable)
Instantiates a new IndexException.- Parameters:
throwable
- the throwable
-
IndexException
public IndexException(String message)
Instantiates a new IndexException.- Parameters:
message
- the message
-
-