Sorry for this very basic question, but I am stuck with this and m not able to find a solution.
I have a Core Java application (Java version is 1.6). From my application I am calling a method in a jar, which is throwing a custom runtime exception.
I am not catching this exception, but still JVM is not printing the stack trace.
Does JVM by default will not print the stack trace, when a runtime exception is thrown and not caught? Or am I missing something which I can check?
Thanks in advance.
-Sandeep
class Custom extends Exception { public Custom( String msg ){ super( msg, null, false, **false** ); } }-- The last false is the one.