exceptionHandlingEx(1) (1)
exceptionHandlingEx(1) (1)
method1();
System.out.print(str);
try{
method2();
} catch(Exception ex){
str+="\nGood Morning..";
try{
method3();
str+="\nHello..";
} catch(Exception ex){
} finally{
method3();
str+="\nGood Bye..";
//System.out.println("A");
}
} //System.out.println("A");
//str+="\n A";