@RequestMapping(value = "/throwCustomizedException1")
public ModelAndView throwCustomizedException1(
HttpServletRequest request,HttpServletResponse response)
throws CustomizedException1 {
throw new CustomizedException1(
"Houston, we have a problem!");
}