org.cqframework.cql.cql2elm.CqlIncludeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cql-to-elm Show documentation
Show all versions of cql-to-elm Show documentation
The cql-to-elm library for the Clinical Quality Language Java reference implementation
package org.cqframework.cql.cql2elm;
public class CqlIncludeException extends RuntimeException {
private String librarySystem;
private String libraryId;
private String versionId;
public CqlIncludeException(String message, String librarySystem, String libraryId, String versionId) {
super(message);
this.librarySystem = librarySystem;
this.libraryId = libraryId;
this.versionId = versionId;
}
public CqlIncludeException(
String message, String librarySystem, String libraryId, String versionId, Throwable cause) {
super(message, cause);
this.librarySystem = librarySystem;
this.libraryId = libraryId;
this.versionId = versionId;
}
public String getLibrarySystem() {
return librarySystem;
}
public String getLibraryId() {
return libraryId;
}
public String getVersionId() {
return versionId;
}
}