Failure

data class Failure<out E>(val error: E) : StandaloneResult<Nothing, E>

A failed StandaloneResult holding the error that describes what went wrong.

Parameters

error

The error describing the failure.

Constructors

Link copied to clipboard
constructor(error: E)

Properties

Link copied to clipboard
val error: E