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

cucumber.runtime.NoInstancesException Maven / Gradle / Ivy

package cucumber.runtime;

public class NoInstancesException extends CucumberException {

    public NoInstancesException(Class parentType) {
        super(createMessage(parentType));
    }

    private static String createMessage(Class parentType) {
        return String.format("Couldn't find a single implementation of " + parentType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy