Home
last modified time | relevance | path

Searched refs:evaluationException (Results 1 – 4 of 4) sorted by relevance

/external/escapevelocity/src/main/java/com/google/escapevelocity/
DReferenceNode.java58 throw evaluationException("Undefined reference $" + id); in evaluate()
92 throw evaluationException("Cannot get member " + id + " of null value"); in evaluate()
118 throw evaluationException( in evaluate()
153 throw evaluationException("Cannot index null value"); in evaluate()
158 throw evaluationException("List index is not an integer: " + indexValue); in evaluate()
163 throw evaluationException( in evaluate()
215 throw evaluationException("Cannot invoke method " + id + " on null value"); in evaluate()
237 throw evaluationException("No method " + id + " in " + targetClass.getName()); in evaluate()
249 throw evaluationException( in evaluate()
254 throw evaluationException( in evaluate()
[all …]
DNode.java51 EvaluationException evaluationException(String message) { in evaluationException() method in Node
55 EvaluationException evaluationException(Throwable cause) { in evaluationException() method in Node
DExpressionNode.java72 throw evaluationException("Arithemtic is only available on integers, not " + show(value)); in intValue()
DDirectiveNode.java121 throw evaluationException("Not iterable: " + collectionValue); in evaluate()