mirror of
https://github.com/plexusorg/Plex.git
synced 2025-04-05 19:03:13 +00:00
- exceptions used now - use CommandSource over CommandSender as it will generally be more versatile
9 lines
233 B
Java
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);
|
|
}
|
|
} |