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

io.polyapi.plugin.error.validation.InvalidUUIDException 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 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy