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

cn.topicstudy.jutil.validation.ConstraintUnsatisfiedInfo Maven / Gradle / Ivy

package cn.topicstudy.jutil.validation;

import lombok.Data;

@Data
public class ConstraintUnsatisfiedInfo {
    private String fieldName;
    private Object value;
    private String message;

    public ConstraintUnsatisfiedInfo(String fieldName, Object value, String message) {
        this.fieldName = fieldName;
        this.value = value;
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy