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