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; } }