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

6 lines
212 B
C#

namespace NodePipeline.Engine.Exceptions.PipelineRegistry.Registration;
public abstract class NodePipelineExceptionBase(string? message, string key) : Exception(message)
{
public string Key { get; } = key;
}