Subversion Repositories SmartDukaan

Rev

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