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

io.polyapi.plugin.error.deploy.DeploymentWrapperException Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.polyapi.plugin.error.deploy;

import io.polyapi.plugin.error.PolyApiMavenPluginException;

import java.util.Collection;

/**
 * Exception that wraps all the other exceptions thrown when deploying functions.
 */
public class DeploymentWrapperException extends PolyApiMavenPluginException {

    public DeploymentWrapperException(Collection suppressedExceptions) {
        super("Exceptions occurred while deploying functions.");
        suppressedExceptions.forEach(this::addSuppressed);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy