posted 16 years ago
The point may be that, even though you certainly can catch Throwable, you probably shouldn't.
There are two kinds of Throwables: Exceptions and Errors. Errors are usually things that are difficult to recover from, such as VirtualMachineErrors.
It's fine to catch Exceptions, but you usually don't want to catch Errors.
This is a general rule. As usual, there are rare times to deviate from it.