sweetgum83/src/main/java/tools/exceptions/NotEnabledException.java
2024-01-19 03:56:28 -05: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);
}
}