com.github.rs3vans.monadik / Try / Failure

Failure

class Failure : Try<Nothing>

Constructors

<init> Failure(exception: Exception)

Properties

exception val exception: Exception
value val value: Nothing

Inherited Properties

isFailure val isFailure: Boolean
isSuccess val isSuccess: Boolean

Inherited Functions

component1 operator fun component1(): T?
component2 operator fun component2(): Exception?
ifFailure fun ifFailure(right: (Exception) -> Unit): Try<T>
not operator fun not(): Boolean
throwIfFailure fun throwIfFailure(): Try<T>
toEither fun toEither(): Either<T, Exception>
toOption fun toOption(): Option<T>