8 lines
300 B
C#
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)
|
|
{
|
|
} |