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

10 lines
215 B
Java

package dev.plex.exception;
public class ConfigValueNotFoundException extends RuntimeException
{
public ConfigValueNotFoundException()
{
super("<red>This configured value does not exist!");
}
}