View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2013-9-26 下午01:55:27
4    */
5   package gboat2.web.exception;
6   
7   import gboat2.base.bridge.exception.BusinessNestedException;
8   
9   /**
10   * 
11   * 验证异常
12   * @author zhangxj-a
13   * @since jdk1.6
14   * @date 2013-9-26
15   *  
16   */
17  public class ValidateException extends BusinessNestedException{
18  
19  	/** */
20  	private static final long serialVersionUID = 1L;
21  
22  	public ValidateException() {
23  		super();
24  	}
25  
26  	public ValidateException(String message, Throwable cause) {
27  		super(message, cause);
28  	}
29  
30  	public ValidateException(String message) {
31  		super(message);
32  	}
33  
34  	public ValidateException(Throwable cause) {
35  		super(cause);
36  	}
37  
38  }