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

top.focess.util.option.UnsupportedOptionException Maven / Gradle / Ivy

There is a newer version: 1.1.24
Show newest version
package top.focess.util.option;

/**
 * Thrown to indicate that an option is not supported.
 */
public class UnsupportedOptionException extends UnsupportedOperationException {

    /**
     * Constructs an UnsupportedOptionException
     * @param option the option that is not supported
     */
    public UnsupportedOptionException(final String option) {
        super("The option " + option + " is not supported.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy