Uses of Class
org.apache.commons.jexl3.JexlException
-
Packages that use JexlException Package Description org.apache.commons.jexl3 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl3.internal Provides utilities for introspection services. -
-
Uses of JexlException in org.apache.commons.jexl3
Subclasses of JexlException in org.apache.commons.jexl3 Modifier and Type Class Description static classJexlException.AmbiguousThrown when parsing fails due to an ambiguous statement.static classJexlException.AnnotationThrown when an annotation handler throws an exception.static classJexlException.AssignmentThrown when parsing fails due to an invalid assignment.static classJexlException.BreakThrown to break a loop.static classJexlException.CancelThrown to cancel a script execution.static classJexlException.ContinueThrown to continue a loop.static classJexlException.FeatureThrown when parsing fails due to a disallowed feature.static classJexlException.MethodThrown when a method or ctor is unknown, ambiguous or inaccessible.static classJexlException.OperatorThrown when an operator fails.static classJexlException.ParsingThrown when parsing fails.static classJexlException.PropertyThrown when a property is unknown.static classJexlException.ReturnThrown to return a value.static classJexlException.StackOverflowThrown when reaching stack-overflow.static classJexlException.ThrowThrown to throw a value.static classJexlException.TokenizationThrown when tokenization fails.static classJexlException.TryFailedThrown when method/ctor invocation fails.static classJexlException.VariableThrown when a variable is unknown.static classJxltEngine.ExceptionThe sole type of (runtime) exception the JxltEngine can throw.Methods in org.apache.commons.jexl3 that return JexlException Modifier and Type Method Description JexlExceptionJexlException. clean()Cleans a JexlException from any org.apache.commons.jexl3.internal stack trace element.static JexlExceptionJexlException. tryFailed(java.lang.reflect.InvocationTargetException xinvoke)Wrap an invocation exception. -
Uses of JexlException in org.apache.commons.jexl3.internal
Methods in org.apache.commons.jexl3.internal that return JexlException Modifier and Type Method Description protected JexlExceptionInterpreterBase. invocationException(JexlNode node, java.lang.String methodName, java.lang.Throwable xany)Triggered when method, function or constructor invocation fails with an exception.Methods in org.apache.commons.jexl3.internal with parameters of type JexlException Modifier and Type Method Description private java.lang.ObjectInterpreter. evalCatch(ASTReference catchVar, JexlNode catchBody, JexlException caught, java.lang.Object data)Evaluate the catch in a try/catch/finally.
-