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

11 lines
256 B
Java

package dev.plex.command.exception;
import static dev.plex.util.PlexUtils.messageString;
public class PlayerNotBannedException extends RuntimeException
{
public PlayerNotBannedException()
{
super(messageString("playerNotBanned"));
}
}