Subversion Repositories SmartDukaan

Rev

Rev 1034 | Rev 2148 | 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
 
832 rajveer 9
import org.apache.log4j.Logger;
781 vikas 10
 
11
/**
12
 * 
13
 * @author Vikas
14
 *
15
 */
16
 
17
 
18
public class ExceptionController extends BaseController {
19
 
20
	private static final long serialVersionUID = 6095443616072298613L;
832 rajveer 21
	private static Logger log = Logger.getLogger(Class.class);
781 vikas 22
 
23
	public ExceptionController(){
24
		super();
25
	}
26
 
27
	public String index() throws SecurityException, IOException {
28
    	return "success";
29
    }
30
}