ru.fix.dynamic.property.api.source.DynamicPropertyValueNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamic-property-api Show documentation
Show all versions of dynamic-property-api Show documentation
https://github.com/ru-fix/dynamic-property
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.");
}
}