first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package net.sf.jasperreports.engine.fill;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRExpression;
public class JRExpressionEvalException extends JRException {
private static final long serialVersionUID = 10200L;
private JRExpression expression = null;
public JRExpressionEvalException(JRExpression expr, Throwable throwable) {
super("Error evaluating expression : \n\tSource text : " + expr.getText(), throwable);
this.expression = expr;
}
public JRExpression getExpression() {
return this.expression;
}
}