net.forthecrown.grenadier.annotations.CommandParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grenadier-annotations Show documentation
Show all versions of grenadier-annotations Show documentation
Annotation-based command support for Grenadier
package net.forthecrown.grenadier.annotations;
/**
* Exception thrown when an error occurs during command data parsing
*/
public class CommandParseException extends RuntimeException {
public CommandParseException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy