Class ToolOutputException
- Namespace
- DotNetDo
- Assembly
- DotNetDo.Core.dll
Indicates that successful raw tool output could not be converted to its semantic result.
public sealed class ToolOutputException : Exception, ISerializableImplements
Constructors
ToolOutputException(ExecResult, Type, Exception)
Indicates that successful raw tool output could not be converted to its semantic result.
public ToolOutputException(ExecResult result, Type expectedType, Exception innerException)Parameters
resultExecResultexpectedTypeTypeinnerExceptionException
Properties
ExpectedType
The semantic result type expected by the tool command.
public Type ExpectedType { get; }Property Value
Result
The raw successful process result, retained for inspection.
public ExecResult Result { get; }