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

org.cqframework.fhir.utilities.exception.IGInitializationException Maven / Gradle / Ivy

Go to download

The cqf-fhir library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.cqframework.fhir.utilities.exception;

/**
 * This exception is thrown whenever there is an issue initializing the tooling from a source IG.
 */
public class IGInitializationException extends RuntimeException {
    static final long serialVersionUID = 1L;

    public IGInitializationException() {
        super();
    }

    public IGInitializationException(String message) {
        super(message);
    }

    public IGInitializationException(String message, Throwable cause) {
        super(message, cause);
    }

    public IGInitializationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy