(int i)
| 1 | public class DroppedException implements Cloneable { |
| 2 | public static int x(int i) throws Exception { |
| 3 | if (i > 0) { |
| 4 | throw new Exception(); |
| 5 | } |
| 6 | return i; |
| 7 | } |
| 8 | |
| 9 | public void commonPractice() { // right case |
| 10 | try { |
no outgoing calls
no test coverage detected