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

com.mistraltech.smog.core.PropertyNotFoundException Maven / Gradle / Ivy

package com.mistraltech.smog.core;

class PropertyNotFoundException extends RuntimeException {
    public PropertyNotFoundException(Class clazz, String propertyName) {
        super(String.format("Could not find accessor method on class %s for property %s",
                clazz.getSimpleName(), propertyName));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy