mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-04 21:46:55 +00:00
Add Javadocs
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user