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