Files
Plex/api/src/main/java/dev/plex/command/exception/PlayerNotBannedException.java
T

15 lines
286 B
Java

package dev.plex.command.exception;
public class PlayerNotBannedException extends RuntimeException
{
public PlayerNotBannedException()
{
super("PlayerNotBannedException");
}
public PlayerNotBannedException(String message)
{
super(message);
}
}