public NodeToolResult()

in src/main/java/org/apache/cassandra/distributed/api/NodeToolResult.java [47:55]


    public NodeToolResult(String[] commandAndArgs, int rc, List<Notification> notifications, Throwable error, String stdout, String stderr)
    {
        this.commandAndArgs = commandAndArgs;
        this.rc = rc;
        this.notifications = notifications;
        this.error = error;
        this.stdout = stdout;
        this.stderr = stderr;
    }