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

org.cqframework.cql.cql2elm.CqlIncludeException Maven / Gradle / Ivy

Go to download

The cql-to-elm library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy