This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy at the same URL with .md appended. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

ContentError Pennington.Pipeline

Describes a failure encountered while processing a content item.

Properties

Exception Exception
Underlying exception, if any.
Message string
Human-readable error message.

Constructors

ContentError

#
public ContentError(string Message, Exception Exception = null)

Describes a failure encountered while processing a content item.

Parameters

Message string
Human-readable error message.
Exception Exception
Underlying exception, if any.

Pennington.Pipeline.ContentError

namespace Pennington.Pipeline;

/// Describes a failure encountered while processing a content item.
public record ContentError
{
    /// Describes a failure encountered while processing a content item.
    
public ContentError(string Message, Exception Exception = null)
; /// Underlying exception, if any.
public Exception Exception { get; set; }
/// Human-readable error message.
public string Message { get; set; }
}