| 1 | public class Error { |
| 2 | private int n; |
| 3 | private String type; |
| 4 | |
| 5 | public Error(int n, String type) { |
| 6 | this.n = n; |
| 7 | this.type = type; |
| 8 | } |
| 9 | |
| 10 | public int getN() { |
| 11 | return n; |
| 12 | } |
| 13 | |
| 14 | @Override |
| 15 | public String toString() { |
| 16 | return n+" "+type; |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected