I have below lines of code to catch the exceptions.
catch (Throwable ex) {
//print stack trace
}
and
catch (Exception ex) {
//print stack trace
}
between the above two catch blocks, which one is recommended?
Thanks!