A runtime exception may be thrown during a call to ELFunction, how do I get the error message given by the runtime exception?
example:
public void test() {
// doSomething
throw new RuntimeException("my error");
// dosomething
}
How do I get the error message “my eroor”?
At the moment I can only get the error message:
error invoking function 'test'
missing the error message I gave