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

11 lines
236 B
Java
Raw Normal View History

package net.ess3.api;
import static com.earth2me.essentials.I18n.tl;
2015-04-15 04:06:16 +00:00
public class UserDoesNotExistException extends Exception {
public UserDoesNotExistException(String name) {
super(tl("userDoesNotExist", name));
}
}