View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2012-4-13 下午12:01:07
4    */
5   package gboat2.attachment;
6   
7   import gboat2.base.bridge.exception.BusinessNestedException;
8   
9   
10  /**
11   * 
12   * @author tanxw
13   * @since jdk1.6
14   * @date 2012-4-13
15   */
16  public class UploadException extends BusinessNestedException {
17  	
18      private static final long serialVersionUID = 1L;
19  
20      public UploadException() {
21  	    super();
22      }
23  
24  	public UploadException(String message, String errorCode) {
25  	    super(message, errorCode);
26      }
27  
28  	public UploadException(String message, Throwable cause, String errorCode) {
29  	    super(message, cause, errorCode);
30      }
31  
32  	public UploadException(String message, Throwable cause) {
33  	    super(message, cause);
34      }
35  
36  	public UploadException(String message) {
37  	    super(message);
38      }
39  
40  	public UploadException(Throwable cause, String errorCode) {
41  	    super(cause, errorCode);
42      }
43  
44  	public UploadException(Throwable cause) {
45  	    super(cause);
46      }
47  	
48  }