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

scray.common.properties.PropertyValueExistsException Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
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