View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2014年3月26日 下午3:25:07
4    */
5   package gboat2.base.bridge.util.security;
6   
7   import gboat2.base.bridge.exception.GboatNestedException;
8   
9   /**
10   * Gboat2 平台加密、解密异常
11   * @author <a href="mailto:[email protected]">何明旺</a>
12   * @since 3.0
13   * @date 2014年3月26日
14   */
15  public class GboatSecurityException extends GboatNestedException {
16  
17      private static final long serialVersionUID = 1L;
18  
19      public GboatSecurityException() {
20          super();
21      }
22  
23      public GboatSecurityException(String message, Throwable cause) {
24          super(message, cause);
25      }
26  
27      public GboatSecurityException(String message) {
28          super(message);
29      }
30  
31      public GboatSecurityException(Throwable cause, String errorCode) {
32          super(cause, errorCode);
33      }
34  
35      public GboatSecurityException(Throwable cause) {
36          super(cause);
37      }
38  
39  }