com.aventstack.extentreports.exceptions.ExtentTestInterruptedException Maven / Gradle / Ivy
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