Difference between using Throwable and Exception in a try catch [duplicate]

Sometimes, I see

try {

} catch(Throwable e) {

}

And sometimes

try {

} catch(Exception e) {

}

What is the difference?

6 Answers
6

Leave a Comment