NodePipeline/NodePipeline.Engine/Exceptions/PipelineRegistry/Construction/PipelineNotFoundException.cs
2026-01-02 20:55:25 +03:00

8 lines
300 B
C#

using NodePipeline.Abstractions.Exceptions;
namespace NodePipeline.Engine.Exceptions.PipelineRegistry.Construction;
public sealed class PipelineNotFoundException(string pipelineId) : PipelineException(pipelineId,
Constants.Exceptions.PipelineRegistry.Construction.PipelineNotFoundException)
{
}