16 lines
538 B
C#
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; }
|
|
} |