Plex/src/main/java/me/totalfreedom/plex/command/exception/CommandFailException.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

9 lines
233 B
Java

package me.totalfreedom.plex.command.exception;
public class CommandFailException extends RuntimeException // this is literally just a runtime exception lol
{
public CommandFailException(String s)
{
super(s);
}
}