/media/sda-magnetic/david/Extern-Magnetic-2022-06-29/Extern01/Dokumente-2021-05-8/disk10-ab-2020-01-10/02-debian-pc2-work/informatik/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");
        }
    }
}