![JAR search and dependency download from the Maven repository](/logo.png)
ru.tinkoff.kora.validation.common.SimpleViolation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation-common Show documentation
Show all versions of validation-common Show documentation
Kora validation-common module
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