aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/system/execution/ProcessResult.java
blob: 03ded02848fed071ed9d223d2b69b36485dc3ef0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. 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;
    }

}