Catch Block Two exception handlers for the writeList method: one for the two checked exceptions that can be thrown within the try statement: catch(FileNotFoundException e) { System.err.println( FileNotFoundException: + e.getMessage()); // Ask for new filename throw new SampleException(e); } catch(IOException e) { System.err.println( Caught IOException: + e.getMessage()); } 27