mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-03 21:16:55 +00:00
15 lines
270 B
Java
15 lines
270 B
Java
package dev.plex.command.exception;
|
|
|
|
public class CommandFailException extends RuntimeException
|
|
{
|
|
public CommandFailException()
|
|
{
|
|
super("CommandFailException");
|
|
}
|
|
|
|
public CommandFailException(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
}
|