TF-EssentialsX/Essentials/src/net/ess3/api/MaxMoneyException.java
KHobbits 882ebae257 [Breaking] Add exception when players have exceeded their account limit.
This might effect some plugins which hook Essentials for economy without using the API
2014-02-02 16:07:32 +00:00

12 lines
182 B
Java

package net.ess3.api;
import static com.earth2me.essentials.I18n._;
public class MaxMoneyException extends Exception
{
public MaxMoneyException()
{
super(_("maxMoney"));
}
}