Subversion Repositories SmartDukaan

Rev

Rev 2148 | Rev 5112 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
781 vikas 1
/**
2
 * 
3
 */
4
package in.shop2020.serving.controllers;
5
 
6
 
7
import java.io.IOException;
8
 
5077 rajveer 9
import org.apache.log4j.Logger;
10
 
781 vikas 11
/**
12
 * 
13
 * @author Vikas
14
 *
15
 */
16
 
17
 
18
public class ExceptionController extends BaseController {
19
 
20
	private static final long serialVersionUID = 6095443616072298613L;
5077 rajveer 21
	private static Logger log = Logger.getLogger(ExceptionController.class);
22
 
781 vikas 23
	public ExceptionController(){
24
		super();
25
	}
26
 
27
	public String index() throws SecurityException, IOException {
5077 rajveer 28
		log.error("Exception page displayed to user with details: " + userinfo);
781 vikas 29
    	return "success";
30
    }
31
}