Files
sweetgum-server/src/main/java/tools/exceptions/NotEnabledException.java
2021-03-30 21:56:34 +02:00

13 lines
294 B
Java

package tools.exceptions;
public class NotEnabledException extends RuntimeException {
public NotEnabledException() {
super("Feature not enabled, please enable the feature in ServerConstant");
}
public NotEnabledException(String message) {
super(message);
}
}