This commit is contained in:
2022-04-09 23:51:27 -05:00
parent de20747d45
commit 9849003ecc
323 changed files with 670 additions and 171 deletions

View File

@ -1,9 +0,0 @@
package dev.plex.command.exception;
public class CommandFailException extends RuntimeException // this is literally just a runtime exception lol
{
public CommandFailException(String s)
{
super(s);
}
}

View File

@ -1,11 +0,0 @@
package dev.plex.command.exception;
import static dev.plex.util.PlexUtils.messageString;
public class ConsoleMustDefinePlayerException extends RuntimeException
{
public ConsoleMustDefinePlayerException()
{
super(messageString("consoleMustDefinePlayer"));
}
}

View File

@ -1,11 +0,0 @@
package dev.plex.command.exception;
import static dev.plex.util.PlexUtils.messageString;
public class ConsoleOnlyException extends RuntimeException
{
public ConsoleOnlyException()
{
super(messageString("consoleOnly"));
}
}

View File

@ -1,11 +0,0 @@
package dev.plex.command.exception;
import static dev.plex.util.PlexUtils.messageString;
public class PlayerNotBannedException extends RuntimeException
{
public PlayerNotBannedException()
{
super(messageString("playerNotBanned"));
}
}

View File

@ -1,11 +0,0 @@
package dev.plex.command.exception;
import static dev.plex.util.PlexUtils.messageString;
public class PlayerNotFoundException extends RuntimeException
{
public PlayerNotFoundException()
{
super(messageString("playerNotFound"));
}
}