1
2
3
4 package net.sourceforge.jsh3modtool.mod;
5
6 /***
7 * @author redsolo
8 */
9 public class InvalidConfigurationException extends Exception
10 {
11 /***
12 * @param reason the reason why the configuration was invalid.
13 */
14 public InvalidConfigurationException(String reason)
15 {
16 super(reason);
17 }
18
19 /***
20 * @param reason the reason why the configuration was invalid.
21 * @param cause the cause of the exception.
22 */
23 public InvalidConfigurationException(String reason, Exception cause)
24 {
25 super(reason, cause);
26 }
27 }