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

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

There is a newer version: 0.15.3
Show newest version
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));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy