(String msg)
| 10 | //@ResponseStatus(HttpStatus.BAD_REQUEST) // 500 -> 400 |
| 11 | class MyException extends RuntimeException { |
| 12 | MyException(String msg) { |
| 13 | super(msg); |
| 14 | } |
| 15 | MyException() { this(""); } |
| 16 | } |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected