aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Exception Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Exception" Watch "Exception" New topic
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.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Exception
 
Similar Threads
Try Catch Block
can a constructor throw exception?
valueChangeListener and Exceptions
Newbie ; NullPointerException
JNI UnsatisfiedLinkError only thrown once