Added API to ExperienceAPI to get the amount of XP needed for a level

This commit is contained in:
TfT_02
2014-08-21 16:38:33 -06:00
parent c878775c72
commit 5cfd2dc799
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.gmail.nossr50.api.exceptions;
public class InvalidFormulaTypeException extends RuntimeException {
private static final long serialVersionUID = 3368670229490121886L;
public InvalidFormulaTypeException() {
super("That is not a valid FormulaType.");
}
}