Subversion Repositories SmartDukaan

Rev

Rev 5077 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5077 Rev 5112
Line 23... Line 23...
23
	public ExceptionController(){
23
	public ExceptionController(){
24
		super();
24
		super();
25
	}
25
	}
26
 
26
 
27
	public String index() throws SecurityException, IOException {
27
	public String index() throws SecurityException, IOException {
28
		log.error("Exception page displayed to user with details: " + userinfo);
28
		log.error("Exception page displayed to user with details: " + userinfo + " \n Referer is: " +  request.getHeader("referer") + " \n URL is: " + request.getRequestURL());
29
    	return "success";
29
    	return "success";
30
    }
30
    }
31
}
31
}