Plex/src/main/java/me/totalfreedom/plex/command/exception/PlayerNotFoundException.java
Super_ 57dbafb385 command stuff
- exceptions used now
- use CommandSource over CommandSender as it will generally be more versatile
2020-11-02 19:19:26 -05:00

11 lines
255 B
Java

package me.totalfreedom.plex.command.exception;
import static me.totalfreedom.plex.util.PlexUtils.tl;
public class PlayerNotFoundException extends RuntimeException
{
public PlayerNotFoundException()
{
super(tl("playerNotFound"));
}
}