TF-EssentialsX/Essentials/src/net/ess3/api/UserDoesNotExistException.java
2015-04-14 23:06:16 -05:00

10 lines
236 B
Java

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