Switch to Maven file structure
This commit is contained in:
12
src/main/java/tools/exceptions/NotEnabledException.java
Normal file
12
src/main/java/tools/exceptions/NotEnabledException.java
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user