mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-19 15:05:37 +00:00
14 lines
224 B
Java
14 lines
224 B
Java
![]() |
package com.earth2me.essentials.api;
|
||
|
|
||
|
import com.earth2me.essentials.Util;
|
||
|
|
||
|
public class NoLoanPermittedException extends Exception
|
||
|
{
|
||
|
|
||
|
public NoLoanPermittedException()
|
||
|
{
|
||
|
super(Util.i18n("negativeBalanceError"));
|
||
|
}
|
||
|
|
||
|
}
|