Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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;
11
 
12
/**
13
 * 
14
 * @author Vikas
15
 *
16
 */
17
 
18
 
19
public class ExceptionController extends BaseController {
20
 
21
	private static final long serialVersionUID = 6095443616072298613L;
22
	private static Log log = LogFactory.getLog(ExceptionController.class);
23
 
24
	public ExceptionController(){
25
		super();
26
	}
27
 
28
	public String index() throws SecurityException, IOException {
29
    	return "success";
30
    }
31
}