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

ru.yandex.qatools.allure.command.AllureCommandException Maven / Gradle / Ivy

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

/**
 * The exception indicates about some problems during Allure commandline execution.
 *
 * @author Artem Eroshenko 
 */
public class AllureCommandException extends RuntimeException {

    public AllureCommandException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy