CanHandleError

trait CanHandleError[F[_]] extends CanHandleError[F]
Authors

Kevin Lee

Since

2020-08-17

Companion
object
trait CanHandleError[F]
class Object
trait Matchable
class Any

Type members

Types

type Xor[+A, +B] = A \/ B
type XorT[A, B] = EitherT[F, A, B]

Value members

Inherited methods

final def handleEitherNonFatal[A, AA >: A, B, BB >: B](fab: => F[A \/ B])(handleError: Throwable => AA \/ BB): F[AA \/ BB]
Inherited from
CanHandleError
final def handleEitherNonFatalWith[A, AA >: A, B, BB >: B](fab: => F[A \/ B])(handleError: Throwable => F[AA \/ BB]): F[AA \/ BB]
Inherited from
CanHandleError
final def handleEitherTNonFatal[A, AA >: A, B, BB >: B](efab: => XorT[A, B])(handleError: Throwable => AA \/ BB): XorT[AA, BB]
Inherited from
CanHandleError
final def handleEitherTNonFatalWith[A, AA >: A, B, BB >: B](efab: => XorT[A, B])(handleError: Throwable => F[AA \/ BB]): XorT[AA, BB]
Inherited from
CanHandleError
def handleNonFatal[A, AA >: A](fa: => F[A])(handleError: Throwable => AA): F[AA]
Inherited from
CanHandleError
def handleNonFatalWith[A, AA >: A](fa: => F[A])(handleError: Throwable => F[AA]): F[AA]
Inherited from
CanHandleError