failCause<E> static method

Exit<Never, E> failCause<E>(
  1. Cause<E> cause
)

Creates a failed exit with the given cause

Implementation

static Exit<Never, E> failCause<E>(Cause<E> cause) => Failure(cause);