1 2 3 4 5 6 7 8 9 10 11 12 13
package test; import java.io.IOException; public class Main { public void testMethod() throws IOException { methodThatThrows(); } public static void methodThatThrows() throws IOException { System.out.println("Inside method that may throw an IOException"); } }