1 package test1; 2 3 public class CalleeCatch { 4 public int p; 5 CalleeCatch()6 public CalleeCatch() { 7 p = 3; 8 } 9 m1(int i)10 public int m1(int i) throws Exception { 11 throw new Exception(); 12 } 13 test()14 public int test() throws Exception { 15 return m1(p); 16 } 17 } 18