io.polyapi.plugin.error.function.UnclearFunctionReferenceException 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.function;
import io.polyapi.plugin.error.PolyApiMavenPluginException;
import java.util.List;
import static java.lang.String.format;
import static java.lang.String.join;
public class UnclearFunctionReferenceException extends PolyApiMavenPluginException {
public UnclearFunctionReferenceException(String expectedReference, List retrievedReferences) {
super(format("Unclear function reference. Expected '%s', but found '%s'. Please retry with a specific case sensitive one.", expectedReference, join(", ", retrievedReferences)));
}
}