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

io.mvnpm.esbuild.install.InstallException Maven / Gradle / Ivy

The newest version!
package io.mvnpm.esbuild.install;

public class InstallException extends RuntimeException {

    private final String id;

    public InstallException(String message, String id) {
        super(message);
        this.id = id;
    }

    public String id() {
        return id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy