Divide_2.java 250 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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();
  }
}