Subversion Repositories SmartDukaan

Rev

Rev 1044 | Rev 5077 | 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
/**
10
 * 
11
 * @author Vikas
12
 *
13
 */
14
 
15
 
16
public class ExceptionController extends BaseController {
17
 
18
	private static final long serialVersionUID = 6095443616072298613L;
19
 
20
	public ExceptionController(){
21
		super();
22
	}
23
 
24
	public String index() throws SecurityException, IOException {
25
    	return "success";
26
    }
27
}