org.cqframework.fhir.npm.NpmPackageManagerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cqf-fhir-npm Show documentation
Show all versions of cqf-fhir-npm Show documentation
The cqf-fhir-npm library for the Clinical Quality Language Java reference implementation
The newest version!
package org.cqframework.fhir.npm;
/**
* This exception is thrown whenever there is an issue with the NpmPackageManager.
*/
public class NpmPackageManagerException extends RuntimeException {
static final long serialVersionUID = 1L;
public NpmPackageManagerException() {
super();
}
public NpmPackageManagerException(String message) {
super(message);
}
public NpmPackageManagerException(String message, Throwable cause) {
super(message, cause);
}
public NpmPackageManagerException(Throwable cause) {
super(cause);
}
}