io.polyapi.plugin.error.validation.PropertyNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
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.");
}
}