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

com.aventstack.extentreports.exceptions.ExtentTestInterruptedException Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
package com.aventstack.extentreports.exceptions;

@SuppressWarnings("serial")
public class ExtentTestInterruptedException extends RuntimeException {
    public ExtentTestInterruptedException(Throwable t) {
        super(t);
    }

    public ExtentTestInterruptedException(String string) {
        super(string);
    }

    public ExtentTestInterruptedException(String string, Throwable t) {
        super(string, t);
    }   

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy