mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-19 06:58:17 +00:00
14 lines
241 B
Java
14 lines
241 B
Java
![]() |
package com.earth2me.essentials.api;
|
||
|
|
||
|
import com.earth2me.essentials.Util;
|
||
|
|
||
|
public class UserDoesNotExistException extends Exception
|
||
|
{
|
||
|
|
||
|
public UserDoesNotExistException(String name)
|
||
|
{
|
||
|
super(Util.format("userDoesNotExist", name));
|
||
|
}
|
||
|
|
||
|
}
|