aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/process/ChildProcessFailureException.java
blob: 2d1fe1f24bd1efcc29992dee422b897f827d8bc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.vespa.hosted.node.admin.task.util.process;

/**
 * The child process terminated with a non-zero exit code.
 *
 * @author hakonhall
 */
@SuppressWarnings("serial")
public class ChildProcessFailureException extends ChildProcessException {
    ChildProcessFailureException(int exitCode, String commandLine, String possiblyHugeOutput) {
        super("terminated with exit code " + exitCode, commandLine, possiblyHugeOutput);
    }
}