org.jxls.expression.EvaluationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-core Show documentation
Show all versions of jxls-core Show documentation
Small library for Excel generation based on XLS templates
The newest version!
package org.jxls.expression;
/**
* Custom exception class for exceptions thrown during evaluation of expressions
*
* @author Leonid Vysochyn
*/
public class EvaluationException extends RuntimeException {
private static final long serialVersionUID = -611735067629358064L;
public EvaluationException() {
}
public EvaluationException(String message) {
super(message);
}
public EvaluationException(String message, Throwable cause) {
super(message, cause);
}
public EvaluationException(Throwable cause) {
super(cause);
}
}