Package org.codelibs.fess.exception
Class QueryParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.QueryParseException
- All Implemented Interfaces:
Serializable
Exception thrown when a query parsing error occurs.
This exception wraps Lucene's ParseException to provide consistent error handling
within the Fess search framework.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionQueryParseException(org.apache.lucene.queryparser.classic.ParseException cause) Constructs a new QueryParseException with the specified ParseException as the 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
-
QueryParseException
public QueryParseException(org.apache.lucene.queryparser.classic.ParseException cause) Constructs a new QueryParseException with the specified ParseException as the cause.- Parameters:
cause- the ParseException that caused this exception
-