GenericFailure

data class GenericFailure<E>(val data: E) : TraceableState.TaskCompletion<E>

A TraceableState instance indicating that the job or task has failed.

Constructors

Link copied to clipboard
constructor(data: E)

Properties

Link copied to clipboard
val data: E
Link copied to clipboard

The error context, or null if this is not a GenericFailure.

Link copied to clipboard

The thrown exception, or null if this is not an ExceptionalFailure.

Link copied to clipboard

The execution context, or null if this is not Executing.