com.googlecode.aviator.exception.ExpressionNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aviator Show documentation
Show all versions of aviator Show documentation
A lightweight,high performance expression evaluator for java
package com.googlecode.aviator.exception;
/**
* Compiled expression not found exception.
*
* @author dennis
*
*/
public class ExpressionNotFoundException extends ExpressionRuntimeException {
/**
*
*/
private static final long serialVersionUID = -8151661221248281327L;
public ExpressionNotFoundException() {
super();
}
public ExpressionNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public ExpressionNotFoundException(String message) {
super(message);
}
public ExpressionNotFoundException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy