org.opencds.cqf.cql.engine.exception.DataProviderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of engine Show documentation
Show all versions of engine Show documentation
The engine library for the Clinical Quality Language Java reference implementation
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);
}
}