stabilizaiton work - projects rework for maintenanceability and ui livening
This commit is contained in:
14
src/__Libraries/StellaOps.Interop/ToolExecutionException.cs
Normal file
14
src/__Libraries/StellaOps.Interop/ToolExecutionException.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace StellaOps.Interop;
|
||||
|
||||
public sealed class ToolExecutionException : Exception
|
||||
{
|
||||
public ToolExecutionException(string message, ToolResult result)
|
||||
: base(message)
|
||||
{
|
||||
Result = result;
|
||||
}
|
||||
|
||||
public ToolResult Result { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user