View Javadoc
1   package net.sourceforge.rpgee.dice.exceptions;
2   
3   
4   
5   @SuppressWarnings("serial")
6   public class InvalidRandomValueOutputException extends RandomValueException {
7   
8       public InvalidRandomValueOutputException(String string, String string2) {
9           super(string,string2);
10      }
11  
12  }