com.opsbears.webcomponents.configuration.ConfigurationOptionNotFound Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configuration Show documentation
Show all versions of configuration Show documentation
Utilities for creating and reading configuration options
package com.opsbears.webcomponents.configuration;
import javax.annotation.ParametersAreNonnullByDefault;
@ParametersAreNonnullByDefault
public class ConfigurationOptionNotFound extends RuntimeException {
private final String option;
public ConfigurationOptionNotFound(String option) {
super("AbstractConfiguration option not found: " + option);
this.option = option;
}
public String getOption() {
return option;
}
}