WorldSystem/src/main/java/de/butzlabben/world/exceptions/InvalidConfigFormatException.java
Daniel b9f54ca6ed Created new ConfigSystem
Note this Config Merges Settings & Config together to prevent people getting confused *Mostly Me*
2022-09-16 17:55:34 -04:00

9 lines
202 B
Java

package de.butzlabben.world.exceptions;
public class InvalidConfigFormatException extends Exception {
public InvalidConfigFormatException(String message) {
super(message);
}
}