Sunburst/api/src/main/java/dev/plex/exception/PlayerCreatedException.java

10 lines
209 B
Java

package dev.plex.exception;
public class PlayerCreatedException extends RuntimeException
{
public PlayerCreatedException()
{
super("<red>This player already exists in this storage!");
}
}