[source,java] ---- public String readFile(File f) throws IOException { String content; try { content = readFromDisk(f); } catch (IOException e) { throw e; } return content; } ----