8 lines
288 B
C#
8 lines
288 B
C#
using NodePipeline.Abstractions.Exceptions;
|
|
|
|
namespace NodePipeline.Engine.Exceptions.PipelineRegistry.Registration;
|
|
|
|
public sealed class CycleFoundException(string pipelineId) : PipelineException(pipelineId,
|
|
Constants.Exceptions.PipelineRegistry.Registration.CycleFoundException)
|
|
{
|
|
} |