Class QueryEvaluationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.qpid.server.query.engine.exception.QueryEngineException
-
- org.apache.qpid.server.query.engine.exception.QueryEvaluationException
-
- All Implemented Interfaces:
java.io.Serializable
public class QueryEvaluationException extends QueryEngineException
Exception thrown during query evaluation- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedQueryEvaluationException()protectedQueryEvaluationException(java.lang.String message)protectedQueryEvaluationException(java.lang.String message, java.lang.Throwable throwable)protectedQueryEvaluationException(java.lang.Throwable throwable)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QueryEvaluationExceptionemptyFunctionParameter(java.lang.String functionName, int argNumber)static QueryEvaluationExceptionfieldNotFound(java.lang.String property)static QueryEvaluationExceptionfunctionParameterLessThanOne(java.lang.String functionName, int argNumber)static <R> QueryEvaluationExceptioninvalidFunctionParameter(java.lang.String functionName, R parameter)static QueryEvaluationExceptioninvalidFunctionParameters(java.lang.String functionName, java.util.List<?> invalidArgs)static QueryEvaluationExceptionof(java.lang.String message, java.lang.Object... args)
-
-
-
Constructor Detail
-
QueryEvaluationException
protected QueryEvaluationException()
-
QueryEvaluationException
protected QueryEvaluationException(java.lang.String message)
-
QueryEvaluationException
protected QueryEvaluationException(java.lang.Throwable throwable)
-
QueryEvaluationException
protected QueryEvaluationException(java.lang.String message, java.lang.Throwable throwable)
-
-
Method Detail
-
invalidFunctionParameter
public static <R> QueryEvaluationException invalidFunctionParameter(java.lang.String functionName, R parameter)
-
invalidFunctionParameters
public static QueryEvaluationException invalidFunctionParameters(java.lang.String functionName, java.util.List<?> invalidArgs)
-
emptyFunctionParameter
public static QueryEvaluationException emptyFunctionParameter(java.lang.String functionName, int argNumber)
-
functionParameterLessThanOne
public static QueryEvaluationException functionParameterLessThanOne(java.lang.String functionName, int argNumber)
-
fieldNotFound
public static QueryEvaluationException fieldNotFound(java.lang.String property)
-
of
public static QueryEvaluationException of(java.lang.String message, java.lang.Object... args)
-
-