com.github.exception.ReportConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng-metrics Show documentation
Show all versions of testng-metrics Show documentation
A HTML Report of test executions via TestNG
package com.github.exception;
import java.io.Serializable;
public class ReportConfigException extends RuntimeException implements Serializable {
private static final long serialVersionUID = -3644742957748395150L;
public ReportConfigException() {
super();
}
public ReportConfigException(String msg) {
super(msg);
}
/**
* For wrapping up exception
*
* @param message
* @param cause
*/
public ReportConfigException(String message, Throwable cause) {
super(message, cause);
}
}