import java.io.*; class Test{ int y = 77; class Pip{ int z = 88; int foo(){ int x; x = y+z; return x; } } Pip makePip(){ return new Pip(); } public static void buhh(){ try{ new FileReader("nowheretobefound"); }catch(FileNotFoundException f){ System.out.println( f.getMessage() ); }; } }