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

16 lines
538 B
C#

// ReSharper disable UnusedAutoPropertyAccessor.Global
namespace NodePipeline.Abstractions.Exceptions.NodeFactory;
public class NodeCanNotBeInitializedWithoutFactoryException : PipelineException
{
public NodeCanNotBeInitializedWithoutFactoryException(string pipelineId, string nodeType, string nodeId)
: base(pipelineId, Constants.Exceptions.NodeFactory.NodeWasNotInitializedException)
{
NodeType = nodeType;
NodeId = nodeId;
}
public string NodeType { get; }
public string NodeId { get; }
}