Error

data class Error<T>(val error: String) : Result<T>

Result indicating that a conversion was failed.

Parameters

error

The reason why the conversion failed.

Constructors

Link copied to clipboard
fun Error(error: String)

Properties

Link copied to clipboard
val error: String