io.qameta.allure.ReportGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-generator Show documentation
Show all versions of allure-generator Show documentation
Module allure-generator of Allure Framework.
package io.qameta.allure;
/**
* @author Dmitry Baev [email protected]
* Date: 22.10.13
*
* Signals that an attempt to generate the reportData in specified directory has failed.
*/
public class ReportGenerationException extends RuntimeException {
/**
* Constructs the {@link ReportGenerationException} from given cause
*
* @param cause given {@link java.lang.Throwable} cause
*/
public ReportGenerationException(final Throwable cause) {
super(cause);
}
/**
* Constructs the {@link ReportGenerationException} from given cause
* and detail message.
*
* @param message the detail message.
* @param cause given {@link java.lang.Throwable} cause
*/
public ReportGenerationException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* Constructs the {@link ReportGenerationException} with specified detail message
*
* @param message the detail message.
*/
public ReportGenerationException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy