mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 13:36:31 +00:00
12 lines
223 B
Java
12 lines
223 B
Java
package com.earth2me.essentials.api;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
|
|
|
|
public class NoLoanPermittedException extends Exception
|
|
{
|
|
public NoLoanPermittedException()
|
|
{
|
|
super(_("negativeBalanceError"));
|
|
}
|
|
}
|