In Exceptions::debug_check_abort, we crash the VM if the exception matches with -XX:AbortVMOnException.
Currently, in the VM crash description, we only print the exception name (value_string), and not its message (message). For completeness and consistency, we should also print the exception message.
code line:
fatal("Saw %s: %s, aborting", value_string, message);
file:
src/hotspot/share/utilities/exceptions.cpp
Currently, in the VM crash description, we only print the exception name (value_string), and not its message (message). For completeness and consistency, we should also print the exception message.
code line:
fatal("Saw %s: %s, aborting", value_string, message);
file:
src/hotspot/share/utilities/exceptions.cpp