View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2012-2-16 下午03:40:00
4    */
5   package gboat2.base.core.web;
6   
7   import gboat2.base.bridge.exception.GboatNestedException;
8   
9   
10  /**
11   * 
12   * 元数据处理异常
13   * @author lysming
14   * @since jdk1.6
15   * @date 2012-2-16
16   *  
17   */
18  
19  public class MetadataException extends GboatNestedException {
20  	
21  	private static final long serialVersionUID = 1L;
22  
23  	/**  
24  	 * MetadataException    
25  	 */
26  	public MetadataException() {
27  		super();
28  	}
29  	
30  	/**  
31  	 * MetadataException
32  	 * @param message 异常信息
33  	 * @param cause   原始异常 
34  	 */
35  	public MetadataException(String message, Throwable cause) {
36  		super(message, cause);
37  	}
38  	
39  	/**  
40  	 * MetadataException
41  	 * @param message 异常信息
42  	 * @param cause 原始异常 
43  	 * @param errorCode   错误编码  
44  	 */
45  	public MetadataException(String message, Throwable cause, String errorCode) {
46  		super(message, cause, errorCode);
47  	}
48  	
49  	/**  
50  	 * MetadataException
51  	 * @param message     异常信息
52  	 */
53  	public MetadataException(String message) {
54  		super(message);
55  	}
56  	
57  	/**  
58  	 * MetadataException
59  	 * @param message 异常信息
60  	 * @param errorCode    错误编码
61  	 */
62  	public MetadataException(String message, String errorCode) {
63  		super(message, errorCode);
64  	}
65  	
66  	/**  
67  	 * MetadataException
68  	 * @param cause    原始异常   
69  	 */
70  	public MetadataException(Throwable cause) {
71  		super(cause);
72  	}
73  	
74  	/**  
75  	 * MetadataException
76  	 * @param cause 原始异常 
77  	 * @param errorCode  错误编码  
78  	 */
79  	public MetadataException(Throwable cause, String errorCode) {
80  		super(cause, errorCode);
81  	}
82  	
83  }