After an exception i excute some statement in Finally block.After Fianally block we can execute statements??? if possible in that place exception came means who'll handle???
Try
{
.....
Throw exception1;
}
Catch(exception1 e)
{
....
}
Finally
{
try{
}catch(Exeception e){}
}
...statement 1....
throws exception2;
}
here Statement 1 will excute or not??and who'll handle the exception2.