(Exception ex, Model m)
| 16 | } |
| 17 | |
| 18 | @ExceptionHandler(Exception.class) |
| 19 | public String catcher(Exception ex, Model m) { |
| 20 | m.addAttribute("ex", ex); |
| 21 | |
| 22 | return "error"; |
| 23 | } |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected