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

com.github.fashionbrot.validated.exception.ValidatedException Maven / Gradle / Ivy

There is a newer version: 2.0.9
Show newest version
package com.github.fashionbrot.validated.exception;

import lombok.Data;

@Data
public class ValidatedException extends RuntimeException  {

    private String fieldName;

    private String msg;

    public ValidatedException(String msg,String fieldName) {
        super(msg);
        this.msg=msg;
        this.fieldName=fieldName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy