MCPcopy Create free account
hub / github.com/castello/spring_basic / ExceptionController2

Class ExceptionController2

ch2/ExceptionController2.java:18–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16}
17
18@Controller
19public 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected