13 lines
294 B
Java
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);
|
|
}
|
|
}
|