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

11 lines
221 B
Java
Raw Normal View History

package net.ess3.api;
import static com.earth2me.essentials.I18n.tl;
2015-04-15 04:06:16 +00:00
public class NoLoanPermittedException extends Exception {
public NoLoanPermittedException() {
super(tl("negativeBalanceError"));
}
}