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

io.polyapi.plugin.error.validation.PropertyNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.polyapi.plugin.error.validation;

/**
 * Exception thrown when a property sought after is not found.
 */
public class PropertyNotFoundException extends ValidationException {
    /**
     * @see ValidationException#ValidationException(String, String)
     */
    public PropertyNotFoundException(String propertyName) {
        super(propertyName, "Property '%s' not found as parameter nor as part of plugin configuration.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy