ru.yandex.qatools.allure.events.StepFailureEvent Maven / Gradle / Ivy
package ru.yandex.qatools.allure.events;
/**
* @author Dmitry Baev [email protected]
* Date: 11.11.13
*/
public class StepFailureEvent implements Event {
private Throwable throwable;
public StepFailureEvent(Throwable throwable) {
this.throwable = throwable;
}
public Throwable getThrowable() {
return throwable;
}
public void setThrowable(Throwable throwable) {
this.throwable = throwable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy