aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/system/execution/ProcessResult.java
blob: ee0e2805915039cb4a769b3733f1477b5d63c5d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.system.execution;

/**
 * @author bjorncs
 * @author gjoranv
 */
public class ProcessResult {
    public final String stdOut;
    public final String stdErr;
    public final int exitCode;

    public ProcessResult(int exitCode, String stdOut, String stdErr) {
        this.exitCode = exitCode;
        this.stdOut = stdOut;
        this.stdErr = stdErr;
    }

}