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
9 }
10
11 public RpgAbortUpdateException(Exception e, String key) {
12 super(e, key);
13
14 }
15
16 public RpgAbortUpdateException(String key) {
17 super(key);
18
19 }
20
21 public RpgAbortUpdateException(String message, Throwable cause, String key) {
22 super(message, cause, key);
23
24 }
25
26 }