Table of Contents

Class ExecFailedException

Namespace
DotNetDo
Assembly
DotNetDo.Core.dll

Thrown when an awaited command exits with a non-zero code.

public sealed class ExecFailedException : Exception, ISerializable

Implements

Constructors

ExecFailedException(ExecResult)

Thrown when an awaited command exits with a non-zero code.

public ExecFailedException(ExecResult result)

Parameters

result ExecResult

Properties

Command

The exact rendered command text.

public string Command { get; }

Property Value

string

Result

The failed process result.

public ExecResult Result { get; }

Property Value

ExecResult