(Model m)
| 28 | } |
| 29 | |
| 30 | @RequestMapping("/ex") |
| 31 | public String main(Model m) throws Exception { |
| 32 | m.addAttribute("msg", "message from ExceptionController.main()"); |
| 33 | throw new Exception("¿¹¿Ü°¡ ¹ß»ýÇß½À´Ï´Ù."); |
| 34 | } |
| 35 | |
| 36 | @RequestMapping("/ex2") |
| 37 | public String main2() throws Exception { |
nothing calls this directly
no outgoing calls
no test coverage detected