| 9 | |
| 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 | |
| 18 | @Controller |
| 19 | public class ExceptionController2 { |
nothing calls this directly
no outgoing calls
no test coverage detected