Class SearchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- nl.gx.webmanager.services.contentindex.index.api.SearchException
-
- All Implemented Interfaces:
Serializable
public final class SearchException extends Exception
The Class SearchException.
Defines the exception that wraps the underlying cause when performing search queries against the index.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchException(String message)
Instantiates a new SearchException.SearchException(String message, Throwable cause)
Instantiates a new SearchException.SearchException(Throwable cause)
Instantiates a new SearchException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SearchException
public SearchException(String message, Throwable cause)
Instantiates a new SearchException.- Parameters:
message
- the message.cause
- the cause
-
SearchException
public SearchException(Throwable cause)
Instantiates a new SearchException.- Parameters:
cause
- the cause
-
SearchException
public SearchException(String message)
Instantiates a new SearchException.- Parameters:
message
- the message
-
-