| 11 | package java.lang; |
| 12 | |
| 13 | public class ArithmeticException extends RuntimeException { |
| 14 | public ArithmeticException(String message) { |
| 15 | super(message); |
| 16 | } |
| 17 | |
| 18 | public ArithmeticException() { |
| 19 | this(null); |
| 20 | } |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected