Plex/src/main/java/dev/plex/command/exception/PlayerNotFoundException.java

11 lines
231 B
Java

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