Package com.jverstry.ErrorHandling

Examples of com.jverstry.ErrorHandling.CustomizedException2


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

TOP

Related Classes of com.jverstry.ErrorHandling.CustomizedException2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.