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

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)
{
}