Added In-game GM handbook with !id command (#463)
* Added In-game GM handbook with !id command * Removed unused import
This commit is contained in:
11
src/tools/exceptions/IdTypeNotSupportedException.java
Normal file
11
src/tools/exceptions/IdTypeNotSupportedException.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package tools.exceptions;
|
||||
|
||||
public class IdTypeNotSupportedException extends Exception {
|
||||
public IdTypeNotSupportedException() {
|
||||
super("The given ID type is not supported");
|
||||
}
|
||||
|
||||
public IdTypeNotSupportedException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user