Files
Plex/api/src/main/java/dev/plex/command/exception/PlayerNotFoundException.java
T
2026-05-19 19:21:18 -04:00

26 lines
571 B
Java

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);
}
}