Is The Exception That Occurs Inmethod3a Checked Exception
Is the exception that occurs inmethod3a checked exception?
class ExceptionPropagation{
void method3(){
int result = 100 / 0; //Exception Here
}
void method2(){
method3();
}
void method1(){
try{
method2();
} catch(Exception e){ System.out.println(“Exception is handled here”); } }
public static void main(String args[]){ ExceptionPropagation obj=new ExceptionPropagation(); obj.method1(); System.out.println(“Continue with Normal Flow…”);
}
}
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
