Throw errors for child skill leaderboard requests

This commit is contained in:
nossr50
2020-11-10 11:20:32 -08:00
parent c9b950d0c8
commit 592851e80b
6 changed files with 27 additions and 4 deletions

View File

@ -6,4 +6,8 @@ public class InvalidSkillException extends RuntimeException {
public InvalidSkillException() {
super("That is not a valid skill.");
}
public InvalidSkillException(String msg) {
super(msg);
}
}