class lab29 { public static void doStuff()throws InterruptedException { doMoreStuff(); } public static void doMoreStuff() throws InterruptedException { Thread.sleep(1000); System.out.println("checked exception handeled using throws keyword"); } public static void main(String args[])throws InterruptedException { doStuff(); } }