public class EvaluationException extends ExpressionException
expressionString, position
Constructor and Description |
---|
EvaluationException(int position,
java.lang.String message)
Creates a new expression evaluation exception.
|
EvaluationException(int position,
java.lang.String message,
java.lang.Throwable cause)
Creates a new expression evaluation exception.
|
EvaluationException(java.lang.String message)
Creates a new expression evaluation exception.
|
EvaluationException(java.lang.String expressionString,
java.lang.String message)
Creates a new expression evaluation exception.
|
EvaluationException(java.lang.String message,
java.lang.Throwable cause) |
getExpressionString, getPosition, toDetailedString
public EvaluationException(int position, java.lang.String message)
position
- the position in the expression where the problem occurredmessage
- description of the problem that occurredpublic EvaluationException(java.lang.String expressionString, java.lang.String message)
expressionString
- the expression that could not be evaluatedmessage
- description of the problem that occurredpublic EvaluationException(int position, java.lang.String message, java.lang.Throwable cause)
position
- the position in the expression where the problem occurredmessage
- description of the problem that occurredcause
- the underlying cause of this exceptionpublic EvaluationException(java.lang.String message)
message
- description of the problem that occurredpublic EvaluationException(java.lang.String message, java.lang.Throwable cause)