TF-EssentialsX/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java

12 lines
240 B
Java

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