ru.yandex.qatools.allure.command.ExitCode Maven / Gradle / Ivy
package ru.yandex.qatools.allure.command;
/**
* @author etki
*/
public enum ExitCode {
NO_ERROR(0),
GENERIC_ERROR(1),
ARGUMENT_PARSING_ERROR(127);
private final int code;
ExitCode(int code) {
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy