public JexlExpression(String language, String expression) throws ExpressionException {
super(language, expression);
try {
this.compiledExpression = org.apache.commons.jexl.ExpressionFactory.createExpression(expression);
} catch (Exception e) {
throw new ExpressionException("Couldn't create expression " + expression, e);
}
}