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

cucumber.api.testng.CucumberExceptionWrapper Maven / Gradle / Ivy

package cucumber.api.testng;

import cucumber.runtime.CucumberException;
import cucumber.runtime.model.CucumberFeature;

public class CucumberExceptionWrapper implements CucumberFeatureWrapper {
    private CucumberException exception;

    public CucumberExceptionWrapper(CucumberException e) {
        this.exception = e;
    }

    @Override
    public CucumberFeature getCucumberFeature() {
        throw this.exception;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy