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