Fix AbstractMethodError 500 - fixes #589

This commit is contained in:
Tom Morris 2014-08-05 14:55:45 -04:00
parent 8517111fc4
commit 536493c5d3

View File

@ -68,7 +68,7 @@ public class FunctionCallExpr implements Evaluable {
try {
return _function.call(bindings, args);
} catch (Exception e) {
return new EvalError(e.toString());
return new EvalError(e);
}
}