13 lines
291 B
C#
13 lines
291 B
C#
using System;
|
|
|
|
namespace NodePipeline.Abstractions.Exceptions;
|
|
|
|
public abstract class PipelineException : Exception
|
|
{
|
|
public PipelineException(string pipelineId, string? message = null) : base(message)
|
|
{
|
|
PipelineId = pipelineId;
|
|
}
|
|
|
|
public string PipelineId { get; }
|
|
} |