(int n)
| 40 | } |
| 41 | |
| 42 | public static void some_function(int n) { |
| 43 | try { |
| 44 | hi_function(n); |
| 45 | } catch (Exception e) { |
| 46 | System.out.println("We shouldn't get here: " + e); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | public static void hi_function(int n) throws Hi_Exception, Lo_Exception { |
| 51 | try { |
no test coverage detected