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

org.cqframework.fhir.npm.NpmPackageManagerException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy