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

cucumber.runtime.UndefinedStepException Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.runtime;

import gherkin.formatter.model.Step;

class UndefinedStepException extends Throwable {
    public UndefinedStepException(Step step) {
        super(String.format("Undefined Step: %s%s", step.getKeyword(), step.getName()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy