Files
git.stella-ops.org/src/__Libraries/StellaOps.Interop/ToolExecutionException.cs

15 lines
273 B
C#

using System;
namespace StellaOps.Interop;
public sealed class ToolExecutionException : Exception
{
public ToolExecutionException(string message, ToolResult result)
: base(message)
{
Result = result;
}
public ToolResult Result { get; }
}