@RequestMapping(value = "/throwCustomizedException2")
public ModelAndView throwCustomizedException2(
HttpServletRequest request,HttpServletResponse response)
throws CustomizedException2 {
throw new CustomizedException2(
"Something happened on the way to heaven!");
}