TF-EssentialsX/Essentials/src/net/ess3/api/NoLoanPermittedException.java

13 lines
208 B
Java
Raw Normal View History

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