Initial commit

This commit is contained in:
Pepich
2017-11-15 18:38:45 +01:00
parent 9e9b4df5b7
commit 51380d886e
54 changed files with 1900 additions and 0 deletions
@@ -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!");
}
}