Nested try catch block.

We can have nested try catch blocks in which we have try block within a try blockI.

Few things to note are

  try{ 
      try{
        }
     catch(Exception e){
       }
    finally(){
      }
  }//outer try ends
catch(Exception e){
 }
finally(){
 }