6 lines
212 B
C#
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;
|
|
} |