
io.bdeploy.common.cli.data.ExitCode Maven / Gradle / Ivy
package io.bdeploy.common.cli.data;
public enum ExitCode {
OK(0),
ERROR(1);
private final int code;
private ExitCode(int code) {
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy