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

org.opencds.cqf.cql.engine.exception.DataProviderException Maven / Gradle / Ivy

Go to download

The engine library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.opencds.cqf.cql.engine.exception;

/*
 * This class is meant to be thrown by implementations of the DataProvider interface whenever they encounter an Exception
 */
public class DataProviderException extends CqlException {
    private static final long serialVersionUID = 1L;

    public DataProviderException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy