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

com.github.mkolisnyk.cucumber.assertions.LazyAssertionError Maven / Gradle / Ivy

Go to download

The part of Cucumber Reports library which contains extended Cucumber-JVM runners and all relevant functionality.

The newest version!
package com.github.mkolisnyk.cucumber.assertions;

public class LazyAssertionError extends Error {

    private static final long serialVersionUID = 8668292838814104465L;

    public LazyAssertionError() {
    }

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

    public LazyAssertionError(Throwable cause) {
        super(cause);
    }

    public LazyAssertionError(String message, Throwable cause) {
        super(message, cause);
    }

    public LazyAssertionError(String message, Throwable cause,
            boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy