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

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

package ru.yandex.qatools.allure.exceptions;

/**
 * @author Dmitry Baev [email protected]
 *         Date: 11.11.13
 */
public class UnknownEventException extends AllureException {
    public UnknownEventException(String message) {
        super(message);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy