| 16 | } |
| 17 | |
| 18 | @Controller |
| 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 { |
| 28 | throw new FileNotFoundException("¿¹¿Ü°¡ ¹ß»ýÇß½À´Ï´Ù."); |
| 29 | } |
| 30 | } |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected