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

org.opencds.cqf.common.exceptions.MissingRequiredFieldException Maven / Gradle / Ivy

package org.opencds.cqf.common.exceptions;

public class MissingRequiredFieldException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    private String message;

    public MissingRequiredFieldException(String message) {
        this.message = message;
    }

    @Override
    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy