com.g2forge.alexandria.expression.ExpressionNotEvaluableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-expression Show documentation
Show all versions of ax-expression Show documentation
A library for expressions and their evaluation. Includes a basic implementation for math.
package com.g2forge.alexandria.expression;
import lombok.AllArgsConstructor;
@AllArgsConstructor
public class ExpressionNotEvaluableException extends RuntimeException {
private static final long serialVersionUID = -7958704815301247691L;
protected final IExpression, ?> expression;
protected final Class extends IExpression, ?>> type;
}