blob: 6f2bac81cabff76764299730efc9fc53215726dd [file] [log] [blame]
public class Divide_2
{
static void poo()
{
int n = 4/0;
}
public static void main(String[] argv)
{
try
{
poo();
}
catch (ArithmeticException _)
{
return;
}
throw new RuntimeException();
}
}