I am using the Arity Arithmetic Engine for my calculations. So I wanted to know what are all the exceptions that can arise when I use
double res = Symbols.eval("string");
Im enclosing this in a try block as
try{
double res = Symbols.eval("Expression");
return res;
}
catch(SyntaxException s)
{
System.out.println("Exception..!");
}
So i want to know what all exceptions are generated So that I can know where I may be going wrong.