Rev 2148 | Rev 5112 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/****/package in.shop2020.serving.controllers;import java.io.IOException;import org.apache.log4j.Logger;/**** @author Vikas**/public class ExceptionController extends BaseController {private static final long serialVersionUID = 6095443616072298613L;private static Logger log = Logger.getLogger(ExceptionController.class);public ExceptionController(){super();}public String index() throws SecurityException, IOException {log.error("Exception page displayed to user with details: " + userinfo);return "success";}}