NodePipeline/NodePipeline.Abstractions/Exceptions/NodeFactory/OutputPortNodeNotFoundException.cs
2026-01-02 20:55:25 +03:00

16 lines
577 B
C#

// ReSharper disable UnusedAutoPropertyAccessor.Global
namespace NodePipeline.Abstractions.Exceptions.NodeFactory;
public class OutputPortNodeNotFoundException : PipelineException
{
public OutputPortNodeNotFoundException(string pipelineId, string outputPortNodeId, string inputPortNodeId)
: base(pipelineId, Constants.Exceptions.NodeFactory.OutputPortNodeNotFoundException)
{
InputPortNodeId = inputPortNodeId;
OutputPortNodeId = outputPortNodeId;
}
public string InputPortNodeId { get; }
public string OutputPortNodeId { get; }
}