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

net.serenitybdd.core.exceptions.TestCompromisedException Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.serenitybdd.core.exceptions;

public class TestCompromisedException extends RuntimeException implements CausesCompromisedTestFailure {

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy