All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.yandex.qatools.allure.data.ReportGenerationException Maven / Gradle / Ivy

There is a newer version: 1.5.4
Show newest version
package ru.yandex.qatools.allure.data;

/**
 * @author Dmitry Baev [email protected]
 *         Date: 22.10.13
 *         

* Signals that an attempt to generate the report in specified directory has failed. */ public class ReportGenerationException extends RuntimeException { /** * Constructs the {@link ru.yandex.qatools.allure.data.ReportGenerationException} from given cause * * @param cause given {@link java.lang.Throwable} cause */ public ReportGenerationException(Throwable cause) { super(cause); } /** * Constructs the {@link ru.yandex.qatools.allure.data.ReportGenerationException} with specified detail message * * @param message the detail message. */ public ReportGenerationException(String message) { super(message); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy