scray.common.properties.PropertyValueExistsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scray-common Show documentation
Show all versions of scray-common Show documentation
scray artefacts shared between scala and java components
package scray.common.properties;
import scray.common.exceptions.ExceptionIDs;
public class PropertyValueExistsException extends PropertyException {
private static final long serialVersionUID = -1L;
public PropertyValueExistsException(String propertyname) {
super(ExceptionIDs.PROPERTY_VALUE_EXISTS.getName(), "Configuration property " + propertyname + " is already existing and may not be overwritten!");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy