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

14 lines
241 B
Java
Raw Normal View History

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