Add Javadocs

This commit is contained in:
2026-05-19 19:21:18 -04:00
parent 66476fe110
commit d58365f93f
35 changed files with 1199 additions and 0 deletions
@@ -1,12 +1,23 @@
package dev.plex.command.exception;
/**
* Signals that a command could not find the requested player.
*/
public class PlayerNotFoundException extends RuntimeException
{
/**
* Creates an exception with the default player-not-found marker message.
*/
public PlayerNotFoundException()
{
super("PlayerNotFoundException");
}
/**
* Creates an exception with a custom user-facing message.
*
* @param message failure message
*/
public PlayerNotFoundException(String message)
{
super(message);