tech.grasshopper.pdf.exception.PdfReportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-pdf-report Show documentation
Show all versions of cucumber-pdf-report Show documentation
Generates Cucumber execution report in PDF format
package tech.grasshopper.pdf.exception;
public class PdfReportException extends RuntimeException {
private static final long serialVersionUID = -7550714776422516622L;
public PdfReportException() {
super();
}
public PdfReportException(String message) {
super(message);
}
public PdfReportException(String message, Throwable cause) {
super(message, cause);
}
public PdfReportException(Throwable cause) {
super(cause);
}
}