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

net.thucydides.core.annotations.InvalidStepsFieldException Maven / Gradle / Ivy

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

/**
 * Thrown if no suitable WebDriver field with the @Managed annotation is found in a test.
 * 
 * @author johnsmart
 *
 */
public class InvalidStepsFieldException extends RuntimeException {

    private static final long serialVersionUID = -7552399074205295160L;

    public InvalidStepsFieldException(final String message) {
        super(message);
    }

    public InvalidStepsFieldException(final String message, final IllegalAccessException cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy