io.polyapi.plugin.error.validation.BadExclusionException 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;
import static java.lang.String.format;
public class BadExclusionException extends ValidationException {
public BadExclusionException(String propertyName, String excludedPropertyName) {
super(propertyName, format("Property '%s' cannot be set at the same time as property '%s'.", "%s", excludedPropertyName));
}
}