Is it necessary that each try block must be followed by a catch block?

Q

Is it necessary that each try block must be followed by a catch block?

✍: Guest

A

It is not necessary that each try block must be followed by a catch block. It should be followed by either a catch block OR a finally block. And whatever exceptions are likely to be thrown should be declared in the throws clause of the method.

2013-06-03, 3378👍, 0💬