mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-04 16:56:40 +00:00
11 lines
256 B
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"));
|
|
}
|
|
} |