问题
I got the below message when the JVM exited:
JVM process exited with a code of 10
What is the meaning of exit code 10?
回答1:
The JVM yields the exit code specified by the program with System.exit(code).
If the JVM crashed it's OS specific what the exit code could mean
来源:https://stackoverflow.com/questions/994752/meaning-of-jvm-exit-code-10