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

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

package net.thucydides.core.steps;

/**
 * Used to indicate a failing step.
 */
public class StepFailureException extends RuntimeException {
    public StepFailureException(final String message, final Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy