0

Added Config.java

This commit is contained in:
Pepich
2017-02-02 21:04:32 +01:00
parent 311d871bf9
commit 71dfb97f56
2 changed files with 287 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.redstoner.exceptions;
public class NonSaveableConfigException extends Exception {
private static final long serialVersionUID = -7271481973389455510L;
public NonSaveableConfigException() {
super("This config does not support saving!");
}
}