StageFailedException

class StageFailedException(val failedRecord: StageRecord, cause: Throwable) : Exception

Thrown by runStage(...).getOrThrow() / runStageOrThrow() to propagate a recorded stage failure. The failedRecord is already added to the parent's substages before this exception is constructed.

Constructors

Link copied to clipboard
constructor(failedRecord: StageRecord, cause: Throwable)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard

The recorded failed stage, already attached to the parent's substages.

Link copied to clipboard
open val message: String?