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

ru.yandex.qatools.allure.exceptions.AllureException Maven / Gradle / Ivy

There is a newer version: 1.4.0.RC9
Show newest version
package ru.yandex.qatools.allure.exceptions;

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

public class AllureException extends RuntimeException {
    public AllureException(String message) {
        super(message);
    }

    public AllureException(String message, Throwable cause) {
        super(message, cause);
    }

    public AllureException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy