mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-22 00:16:34 +00:00
13 lines
208 B
Java
13 lines
208 B
Java
![]() |
package net.ess3.api;
|
||
|
|
||
|
import static com.earth2me.essentials.I18n._;
|
||
|
|
||
|
|
||
|
public class NoLoanPermittedException extends Exception
|
||
|
{
|
||
|
public NoLoanPermittedException()
|
||
|
{
|
||
|
super(_("negativeBalanceError"));
|
||
|
}
|
||
|
}
|