()
| 160 | |
| 161 | // should pass -- catches E, but RuntimeException caught first |
| 162 | public void testPass5() { |
| 163 | try { |
| 164 | for (int i = 0; i < 1000; i++) |
| 165 | for (int j = i; j < 1000; j++) |
| 166 | throwsNothing(); |
| 167 | throwsIOException(); |
| 168 | } catch (RuntimeException e) { |
| 169 | dontTriggerEmptyExceptionHandler(); |
| 170 | } catch (Exception e) { |
| 171 | dontTriggerEmptyExceptionHandler(); |
| 172 | } |
| 173 | } |
| 174 | } |
nothing calls this directly
no test coverage detected