Possible Duplicate:
throws Exception in finally blocks
The catch block is only executed if an exception is thrown in the try block.
The finally block is executed always after the try(-catch) block, if an exception is thrown or not.
My question is IF I got Exception in finally block than how to handle it ?????