Arithmetische Exceptions


class Ex {
  public static void main (String [] argv) {
    try { int x = 7 / 0;
    } catch ( Exception e ) {
        System.out.println 
            ("got exception: " + e);
    }
  }
}



Johannes Waldmann 2004-06-29