Package org.codelibs.fess.exception
Class SearchQueryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.SearchQueryException
- All Implemented Interfaces:
Serializable
Exception thrown when there are issues with search query processing.
This exception is typically thrown when query parsing, serialization,
or processing fails during search operations. It extends FessSystemException
to provide specific handling for search query-related errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSearchQueryException(String message) Constructs a new SearchQueryException with the specified detail message.SearchQueryException(String message, Throwable cause) Constructs a new SearchQueryException with the specified detail message and cause.SearchQueryException(Throwable cause) Constructs a new SearchQueryException 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
-
SearchQueryException
Constructs a new SearchQueryException with the specified detail message and cause.- Parameters:
message- The detail message explaining the exceptioncause- The cause of this exception
-
SearchQueryException
Constructs a new SearchQueryException with the specified detail message.- Parameters:
message- The detail message explaining the exception
-
SearchQueryException
Constructs a new SearchQueryException with the specified cause.- Parameters:
cause- The cause of this exception
-