mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
12 lines
223 B
Java
12 lines
223 B
Java
package net.ess3.api;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
|
|
|
|
public class UserDoesNotExistException extends Exception
|
|
{
|
|
public UserDoesNotExistException(String name)
|
|
{
|
|
super(_("userDoesNotExist", name));
|
|
}
|
|
}
|