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
public class FilterBuildingException extends RuntimeException
FilterBuildingException is the RuntimeException thrown by theQueryHelper
when building aFilter
. Instances of FilterBuildingException should hold the String that was being processed when the exception occurred.- Author:
- djl 2009.10.5
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor 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.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getParseString()
Answer the String that was being processed when the Exception occurred-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FilterBuildingException
public FilterBuildingException()
Construct a new FilterBuildingException.
-
FilterBuildingException
public FilterBuildingException(String sMessage, String sParseString)
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
public 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.- Parameters:
sMessage
- the message String for the exceptionsParseString
- the String that was being parsedexceptionCause
- a base exception that caused the error
-
-
Method Detail
-
getParseString
public String getParseString()
Answer the String that was being processed when the Exception occurred- Returns:
- the String being processed when the Exception occurred
-
-