mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-18 22:49:45 +00:00
10 lines
236 B
Java
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));
|
|
}
|
|
}
|