| Author |
Exception
|
Chetan Dodiya
Ranch Hand
Joined: Jun 27, 2008
Posts: 39
|
|
I have one doubt.... try{ ---- /* Exception occurs */ ---- } finally{ --- --- } What if,any of the exceptions occurs in the try block??? catch clause is not there to handle the exception...
|
SCJP 1.5
|
 |
Rekha Srinath
Ranch Hand
Joined: Sep 13, 2008
Posts: 178
|
|
In case of unchecked exceptions, the finally block will be executed and the exception will be called to the calling method. In case of checked exceptions, you have to declare the exception in the methods or handle it in any of the functions in the call stack.
|
 |
 |
|
|
subject: Exception
|
|
|