A
Aaron Fude
Hi,
Very often, for debugging purposes in Swing applications, I like to
see the stacktrace so I do the following:
try {
throw new RuntimeException();
}
catch (Exception e) {
e.printStackTrace();
}
Is there a more tasteful way of accomplishing this?
Thanks!
Very often, for debugging purposes in Swing applications, I like to
see the stacktrace so I do the following:
try {
throw new RuntimeException();
}
catch (Exception e) {
e.printStackTrace();
}
Is there a more tasteful way of accomplishing this?
Thanks!