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

org.rx.util.ValidateException Maven / Gradle / Ivy

package org.rx.util;

import lombok.Getter;
import org.rx.core.SystemException;

@Getter
public class ValidateException extends SystemException {
    private String propertyName;
    private String violationMessage;

    public ValidateException(String propertyName, String violationMessage, String message) {
        super(message);
        this.propertyName = propertyName;
        this.violationMessage = violationMessage;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy