aspose file tools
The moose likes Beginning Java and the fly likes exception Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "exception" Watch "exception" New topic
Author

exception

Ritesh raushan
Ranch Hand

Joined: Aug 29, 2012
Posts: 97
what means recoverable form(in checked exception) and not recoverable form(in uncheked exception).....


and why always write checked exception(if i call pre-defined method and that method throws checked exception) in method if program write or not....


thanks.....

rits.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32611
    
    4
You should find an explanation in the Java Tutorials.
“Recoverable” probably means it is possible to get a result by waiting and trying again.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: exception
 
Similar Threads
Why java forcing us to catch or throws checked Exception?
HFEJB final Mock Question on exception
IOException rant - good idea or 'lazyman' solution?
about Exception Handling
Checked Exception is BAD ?