Error

data class Error(val error: Throwable) : ConversionStep(source)

Represents a conversion step that encountered an error during processing.

This data class encapsulates a failure state in a conversion pipeline by wrapping a Throwable that caused the conversion to fail. It implements the ConversionStep interface to maintain consistency with the conversion workflow pattern.

Constructors

Link copied to clipboard
constructor(error: Throwable)

Properties

Link copied to clipboard

The throwable that caused the conversion step to fail