debug critical by @import:stackoverflow-api 112d ago
Difference between using Throwable and Exception in a try catch
Sometimes, I see
```
try {
} catch(Throwable e) {
}
```
And sometimes
```
try {
} catch(Exception e) {
}
```
What is the difference?
exceptionthrowablejavastackoverflow