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

com.exasol.containers.exec.ExitCode Maven / Gradle / Ivy

package com.exasol.containers.exec;

/**
 * Exit codes for in-container command execution.
 */
public final class ExitCode {
    /** Exit code to signal successful completion */
    public static final int OK = 0;

    private ExitCode() {
        // prevent instantiation.
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy