tech.grasshopper.exception.ExtentReportsCucumberPluginException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extentreports-cucumberjson-plugin Show documentation
Show all versions of extentreports-cucumberjson-plugin Show documentation
ExtentReports generation from Cucumber JSON report
package tech.grasshopper.exception;
public class ExtentReportsCucumberPluginException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public ExtentReportsCucumberPluginException(String message) {
super(message);
}
public ExtentReportsCucumberPluginException(String message, Exception exception) {
super(message, exception);
}
}