Skip to content

Commit 92429d7

Browse files
PipelineException message
1 parent 3a7cc6f commit 92429d7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

SimpleTplDataflowPipelines.sln

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B3CAAC95-379E-4AA9-B5CB-6F043AA0081D}"
77
ProjectSection(SolutionItems) = preProject
88
.gitignore = .gitignore
9+
_VARIOUS\_Notes.txt = _VARIOUS\_Notes.txt
910
LICENSE = LICENSE
1011
logo.png = logo.png
1112
README.md = README.md

src/SimpleTplDataflowPipelines/PipelineBuilder.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -281,12 +281,13 @@ public IPropagatorBlock<TInput, TOutput> ToPipeline()
281281
}
282282

283283
/// <summary>
284-
/// Represents an error that occurred in an other dataflow block, owned by the same pipeline.
284+
/// Represents an error that occurred in an other dataflow block,
285+
/// or post-completion action, owned by the same pipeline.
285286
/// </summary>
286287
public sealed class PipelineException : Exception
287288
{
288289
// Prevent this type from being publicly creatable.
289-
internal PipelineException() : base("An other dataflow block, owned by the same pipeline, failed.") { }
290+
internal PipelineException() : base("An other dataflow block, or post-completion action, owned by the same pipeline, failed.") { }
290291
}
291292

292293
internal abstract class Node

0 commit comments

Comments
 (0)