1 package net.sourceforge.rpgee.dice.exceptions;
2
3 import net.sourceforge.rpgee.exceptions.KeyMessageBasedException;
4
5 @SuppressWarnings("serial")
6 public class RandomValueException extends KeyMessageBasedException {
7
8 public RandomValueException(String string, String string2) {
9 super(string, string2);
10 }
11
12 public RandomValueException(Exception e, String string) {
13 super(e,string);
14 }
15
16 public RandomValueException(String string) {
17 super(string);
18 }
19
20 public RandomValueException(String string, Exception e, String string2) {
21 super(string,e,string2);
22 }
23
24 }