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

net.serenitybdd.core.IgnoredStepException Maven / Gradle / Ivy

package net.serenitybdd.core;

/**
 * Exception thrown to indicate that a test cannot proceed and should be considered 'skipped'.
 * This will result in the test being marked as 'skipped', as opposed to 'failing'.
 */
public class IgnoredStepException extends RuntimeException {
    public IgnoredStepException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy