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

net.thucydides.core.steps.TestMethodNotFoundException Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.thucydides.core.steps;

/**
 * A named test method was not found in a test class.
 * This would be strange: a low-level error, probably due to a bug in the Thucydides core.
 */
public class TestMethodNotFoundException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public TestMethodNotFoundException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy