Recently encountered this error code:
Has anyone else figured out how to get the stack trace instead of only getting the return code? None of the code analysis/debugging tools I use seem to find any problems with the code, so it'd be helpful if there were a way to inspect this a bit more easily. I've tried to
and
but neither option returns any more information than the error code itself.
Code:
error . . . . . . . . . . . . . . . . . . . . . . . . Return code 5100
a Java runtime exception occurred;
This indicates a Java runtime exception occurred inside a
Java program. Typically exceptions should be caught by the
Java program and handled in a graceful way. This error
indicates the exception was not handled by the program and
therefore it is handle by the system.
Code:
set debug on
Code:
set trace on
Comment