View Javadoc

1   package net.sourceforge.rpgee.dice.exceptions;
2   
3   
4   @SuppressWarnings("serial")
5   public class InvalidParameterException extends RandomValueException {
6   
7       public InvalidParameterException(Exception e, String string) {
8           super(e, string);
9       }
10  
11      public InvalidParameterException(String string) {
12          super(string);
13      }
14  
15  }