/media/sda-magnetic/david/Dokumente-15/fernuni-hagen/cs-i-ii/old-cs-2-03/java-new/2021-01-26-1/ThrowsTestProg.java


public class ThrowsTestProg {
    public static void main (String [] args) {
        ThrowsTest tt = new ThrowsTest ();
        tt.printA ();
    }
    
    public static class ThrowsTest {
        ThrowsTest () throws ArrayIndexOutOfBoundsException {
            System.out.println ("B");
            int i = 5/0;
        }
        void printA ()  throws ArrayIndexOutOfBoundsException {   
            System.out.println ("A");
        }
    }
}