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

cucumber.runtime.android.MissingStepDefinitionError Maven / Gradle / Ivy

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

/**
 * Indicates that there was a missing step in the execution of the scenario lifecycle.
 */
public class MissingStepDefinitionError extends AssertionError {

    /**
     * Creates a new instance for the given snippet.
     *
     * @param snippet the suggested snippet which could be implemented to avoid this exception
     */
    public MissingStepDefinitionError(final String snippet) {
        super(String.format("\n\n%s", snippet));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy