1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-18 17:53:00 +01:00

Added functions to ExperienceAPI for use with offline players.

Fixes #836
This commit is contained in:
GJ
2013-03-17 10:34:46 -04:00
parent b2cdf21de5
commit c2fea660e7
4 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.gmail.nossr50.api;
public class InvalidPlayerException extends RuntimeException {
private static final long serialVersionUID = 907213002618581385L;
public InvalidPlayerException() {
super("That player does not exist in the database.");
}
}