15 lines
273 B
C#
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; }
|
|
}
|