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:
Pandabyte
2019-05-05 08:49:13 +10:00
committed by Ronan Lana
parent 402d7b359d
commit 397e16bb85
3 changed files with 113 additions and 0 deletions

View 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);
}
}