mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 23:47:31 +00:00
11 lines
161 B
Java
11 lines
161 B
Java
![]() |
package com.earth2me.essentials.commands;
|
||
|
|
||
|
|
||
|
public class NoChargeException extends Exception
|
||
|
{
|
||
|
public NoChargeException()
|
||
|
{
|
||
|
super("Will charge later");
|
||
|
}
|
||
|
}
|