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

ru.fix.dynamic.property.api.source.DynamicPropertyValueNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.0.8
Show newest version
package ru.fix.dynamic.property.api.source;

public class DynamicPropertyValueNotFoundException extends RuntimeException {
    public DynamicPropertyValueNotFoundException(String propertyName, Class propertyType) {
        super("" +
                "Property '" + propertyName + "' of type '" + propertyType + "' not found in property source." +
                " It does not have default value." +
                " If property was initialized before the old value will stay without any change." +
                " DynamicProperty listeners will not be invoked." +
                " Provide default value for DynamicProperty or configure property value in PropertySource.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy