mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 12:38:58 +00:00
12 lines
240 B
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));
|
|
}
|
|
}
|