void m() throws java.io.FileNotFoundException {
System.out.println("c");
try {
m2();
} catch(java.io.FileNotFoundException ex) {
}
System.out.println("d");
}
//Tem necessidade de tratar e lançar java.io.FileNotFoundException?