Plex/src/main/java/me/totalfreedom/plex/command/exception/PlayerNotFoundException.java

11 lines
255 B
Java
Raw Normal View History

package me.totalfreedom.plex.command.exception;
import static me.totalfreedom.plex.util.PlexUtils.tl;
public class PlayerNotFoundException extends RuntimeException
{
public PlayerNotFoundException()
{
super(tl("playerNotFound"));
}
}