Problem of exception catch in HotSpot
I have a question about the exception mechanism in Hotspot.
As we know, when you trigger an exception which is not compulsory to be catched by developer out of a try-catch segment, as a ArrayIndexOutOfBoundsException. The JVM on PC will catch the exception by itself and print the stack trace information. But HotSpot seems don't have the same mechanism. Is that true? Or where does these codes for exception catching locate?

