io.polyapi.plugin.error.validation.InvalidUUIDException 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 InvalidUUIDException extends ValidationException {
public InvalidUUIDException(String propertyName, String propertyValue, Throwable cause) {
super(propertyName, format("Property '%s' with value '%s' doesn't match UUID format.", propertyName, propertyValue), cause);
}
}