org.opencds.cqf.cql.engine.exception.InvalidDate 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;
public class InvalidDate extends CqlException {
private static final long serialVersionUID = 1L;
public InvalidDate(String message) {
super(message);
}
}