lab26

PHOTO EMBED

Mon Oct 30 2023 09:07:51 GMT+0000 (Coordinated Universal Time)

Saved by @viinod07

public class lab26
{
public static void main(String[] args)
{
try
{
int x=67/0;
}
catch(ArithmeticException e1)
{
System.out.println("exception 1;"+e1);
}
try
{
String s=null;
System.out.println(s.length());
}
catch(NullPointerException e2)
{
System.out.println("exception 2:"+e2);
}
}
}



content_copyCOPY