Package ubic.gemma.core.search
Class ParseSearchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ubic.gemma.core.search.SearchException
-
- ubic.gemma.core.search.ParseSearchException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
LuceneParseSearchException
public class ParseSearchException extends SearchException
An exception that indicate that the search query could not be parsed.When that occurs, we typically reattempt to parse the query.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseSearchException(String query, String message, Throwable cause)ParseSearchException(String query, String message, Throwable cause, ParseSearchException originalParseException)ParseSearchException(String query, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParseSearchExceptiongetOriginalParseException()The originalParseExceptionif this query was reattempted.StringgetQuery()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ParseSearchException
public ParseSearchException(String query, String message, Throwable cause, ParseSearchException originalParseException)
-
-
Method Detail
-
getQuery
public String getQuery()
-
getOriginalParseException
@Nullable public ParseSearchException getOriginalParseException()
The originalParseExceptionif this query was reattempted.
-
-