Package com.tangosol.util
Class FilterBuildingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.tangosol.util.FilterBuildingException
- All Implemented Interfaces:
Serializable
FilterBuildingException is the RuntimeException thrown by the
QueryHelper
when building a Filter
. Instances of
FilterBuildingException should hold the String that was being processed when
the exception occurred.- Author:
- djl 2009.10.5
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct 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. -
Method Summary
Modifier and TypeMethodDescriptionAnswer the String that was being processed when the Exception occurredMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FilterBuildingException
public FilterBuildingException()Construct a new FilterBuildingException. -
FilterBuildingException
Construct a new FilterBuildingException with the given error string along with the string that was being parsed.- Parameters:
sMessage
- the message String for the exceptionsParseString
- the String that was being parsed
-
FilterBuildingException
Construct a new FilterBuildingException with the given error string, the string that was being parsed and a base exception.- Parameters:
sMessage
- the message String for the exceptionsParseString
- the String that was being parsedexceptionCause
- a base exception that caused the error
-
-
Method Details
-
getParseString
Answer the String that was being processed when the Exception occurred- Returns:
- the String being processed when the Exception occurred
-