TF-EssentialsX/Essentials/src/net/ess3/api/UserDoesNotExistException.java

13 lines
223 B
Java
Raw Normal View History

package net.ess3.api;
import static com.earth2me.essentials.I18n._;
public class UserDoesNotExistException extends Exception
{
public UserDoesNotExistException(String name)
{
super(_("userDoesNotExist", name));
}
}