Sometimes, I see
try {
} catch(Throwable e) {
}
And sometimes
try {
} catch(Exception e) {
}
What is the difference?
Sometimes, I see
try {
} catch(Throwable e) {
}
And sometimes
try {
} catch(Exception e) {
}
What is the difference?