View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2013-01-22 
4    */
5   package gboat2.web.exception;
6   
7   import gboat2.base.bridge.exception.DefaultGboatNestedException;
8   
9   /**首选项 配置异常基类
10   * @author wanghb-a
11   *
12   */
13  public class ConfigBusinessNestedException extends DefaultGboatNestedException {
14  
15  	/**
16  	 */
17  	private static final long serialVersionUID = -38444323083127316L;
18  
19  	public ConfigBusinessNestedException() {
20  		super();
21  	}
22  
23  	public ConfigBusinessNestedException(String message, String errorCode) {
24  		super(message, errorCode);
25  	}
26  
27  	public ConfigBusinessNestedException(String message, Throwable cause, String errorCode) {
28  		super(message, cause, errorCode);
29  	}
30  
31  	public ConfigBusinessNestedException(String message, Throwable cause) {
32  		super(message, cause);
33  	}
34  
35  	public ConfigBusinessNestedException(String message) {
36  		super(message);
37  	}
38  
39  	public ConfigBusinessNestedException(Throwable cause, String errorCode) {
40  		super(cause, errorCode);
41  	}
42  
43  	public ConfigBusinessNestedException(Throwable cause) {
44  		super(cause);
45  	}
46  	
47  }