mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-05 14:06:53 +00:00
15 lines
286 B
Java
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);
|
|
}
|
|
}
|