StandardReportOutcome

Result of a single materialise attempt.

Inheritors

Constructors

Link copied to clipboard
protected constructor()

Types

Link copied to clipboard
data class Failed(val reason: String, val cause: Throwable? = null) : StandardReportOutcome

Rendering failed. reason is a short human-readable summary suitable for a notification; cause is the underlying Throwable when available (null for non-exception failures such as "no snapshot to render").

Link copied to clipboard
data class Ok(val file: File) : StandardReportOutcome

The report rendered successfully; file is the written report file.