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

11 lines
231 B
Java
Raw Normal View History

2021-01-03 07:21:15 +00:00
package dev.plex.command.exception;
2021-01-03 07:21:15 +00:00
import static dev.plex.util.PlexUtils.tl;
public class PlayerNotFoundException extends RuntimeException
{
public PlayerNotFoundException()
{
super(tl("playerNotFound"));
}
}