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

ru.tinkoff.kora.validation.common.SimpleViolation Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package ru.tinkoff.kora.validation.common;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

record SimpleViolation(String message, ValidationContext.Path path) implements Violation {

    static final Logger logger = LoggerFactory.getLogger(Validator.class);

    @Override
    public String toString() {
        return "Path=" + path + ", Message=" + message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy