scray.common.properties.PropertyConstraintViolatedException 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 PropertyConstraintViolatedException extends PropertyException {
private static final long serialVersionUID = -1L;
public PropertyConstraintViolatedException(String propertyname) {
super(ExceptionIDs.PROPERTY_CONSTRAINT.getName(), "Constraint violated for configuration property " + propertyname + "!");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy