All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.neoforged.camelot.script.RequestedHelpException Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
package net.neoforged.camelot.script;

/**
 * A specific exception thrown by {@link ScriptOptions#parse()} when help is requested via the {@code --help} argument.
 */
public class RequestedHelpException extends RuntimeException {
    public static final String MESSAGE = "Help was requested!";
    public RequestedHelpException() {
        super(MESSAGE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy