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

io.mvnpm.esbuild.BundleException Maven / Gradle / Ivy

The newest version!
package io.mvnpm.esbuild;

public class BundleException extends RuntimeException {

    private final String output;

    public BundleException(String message, String output) {
        super(message);
        this.output = output;
    }

    @Override
    public String getMessage() {
        return super.getMessage() + ": \n" + output;
    }

    public String output() {
        return output;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy