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

io.cucumber.core.exception.CompositeCucumberException Maven / Gradle / Ivy

The newest version!
package io.cucumber.core.exception;

import java.util.List;

public final class CompositeCucumberException extends CucumberException {

    public CompositeCucumberException(List causes) {
        super(String.format("There were %d exceptions. The details are in the stacktrace below.", causes.size()));
        causes.forEach(this::addSuppressed);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy