(int n)
| 48 | } |
| 49 | |
| 50 | public static void hi_function(int n) throws Hi_Exception, Lo_Exception { |
| 51 | try { |
| 52 | lo_function(n); |
| 53 | } catch (Hi_Exception e) { |
| 54 | Hi++; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | public static void lo_function(int n) throws Hi_Exception, Lo_Exception { |
| 59 | try { |
no test coverage detected