public class FilterBuildingException extends RuntimeException
QueryHelper when building a Filter. Instances of
FilterBuildingException should hold the String that was being processed when
the exception occurred.| Constructor and Description |
|---|
FilterBuildingException()
Construct a new FilterBuildingException.
|
FilterBuildingException(String sMessage,
String sParseString)
Construct a new FilterBuildingException with the given error string
along with the string that was being parsed.
|
FilterBuildingException(String sMessage,
String sParseString,
Throwable exceptionCause)
Construct a new FilterBuildingException with the given error string,
the string that was being parsed and a base exception.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getParseString()
Answer the String that was being processed when the Exception occurred
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic FilterBuildingException()
public FilterBuildingException(String sMessage, String sParseString)
sMessage - the message String for the exceptionsParseString - the String that was being parsedpublic FilterBuildingException(String sMessage, String sParseString, Throwable exceptionCause)
sMessage - the message String for the exceptionsParseString - the String that was being parsedexceptionCause - a base exception that caused the errorpublic String getParseString()