class Exceptionprop
{
static void s()
int data= 20/0;
}
static void n()
s();
static void m()
n();
public static void main(String[] args)
m();
System.out.println("Exception Caught at m()");
No comments:
Post a Comment