()
| 19 | public class ExceptionController2 { |
| 20 | |
| 21 | @RequestMapping("/ex3") |
| 22 | public String main() throws Exception { |
| 23 | throw new MyException("¿¹¿Ü°¡ ¹ß»ýÇß½À´Ï´Ù."); |
| 24 | } |
| 25 | |
| 26 | @RequestMapping("/ex4") |
| 27 | public String main2() throws Exception { |
nothing calls this directly
no outgoing calls
no test coverage detected