View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2013-9-26 下午03:50:36
4    */
5   package gboat2.web.exception;
6   
7   
8   public class SuperValidateException extends ValidateException {
9   
10  	/** */
11  	private static final long serialVersionUID = 1L;
12  
13  	public SuperValidateException() {
14  		super();
15  	}
16  
17  	public SuperValidateException(String message, Throwable cause) {
18  		super(message, cause);
19  	}
20  
21  	public SuperValidateException(String message) {
22  		super(message);
23  	}
24  
25  	public SuperValidateException(Throwable cause) {
26  		super(cause);
27  	}
28  
29  }