mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-04 05:26:55 +00:00
11 lines
280 B
Java
11 lines
280 B
Java
package dev.plex.command.exception;
|
|
|
|
import static dev.plex.util.PlexUtils.messageString;
|
|
|
|
public class ConsoleMustDefinePlayerException extends RuntimeException
|
|
{
|
|
public ConsoleMustDefinePlayerException()
|
|
{
|
|
super(messageString("consoleMustDefinePlayer"));
|
|
}
|
|
} |