View Javadoc

1   package net.sourceforge.rpgee.messaging.exceptions;
2   
3   
4   public class RpgAbortUpdateException extends RpgMessageException {
5   
6       public RpgAbortUpdateException(String msg, String key) {
7           super(msg, key);
8           // @TODO Auto-generated constructor stub
9       }
10  
11      public RpgAbortUpdateException(Exception e, String key) {
12          super(e, key);
13          // @TODO Auto-generated constructor stub
14      }
15  
16      public RpgAbortUpdateException(String key) {
17          super(key);
18          // @TODO Auto-generated constructor stub
19      }
20  
21      public RpgAbortUpdateException(String message, Throwable cause, String key) {
22          super(message, cause, key);
23          // @TODO Auto-generated constructor stub
24      }
25  
26  }