error

object error extends error
Companion
class
trait error
class Object
trait Matchable
class Any

Extensions

Inherited extensions

extension (efab: => EitherT[F, A, B])
def catchNonFatalEitherT[F[*], A, B](f: Throwable => AA)(using canCatch: CanCatch[F]): EitherT[F, AA, B]
Inherited from
error
def handleEitherTNonFatal[F[*], A, B](handleError: Throwable => Either[AA, BB])(using canHandleError: CanHandleError[F]): EitherT[F, AA, BB]
Inherited from
error
def handleEitherTNonFatalWith[F[*], A, B](handleError: Throwable => F[Either[AA, BB]])(using canHandleError: CanHandleError[F]): EitherT[F, AA, BB]
Inherited from
error
def recoverEitherTFromNonFatal[F[*], A, B](handleError: PartialFunction[Throwable, Either[AA, BB]])(using canRecover: CanRecover[F]): EitherT[F, AA, BB]
Inherited from
error
def recoverEitherTFromNonFatalWith[F[*], A, B](handleError: PartialFunction[Throwable, F[Either[AA, BB]]])(using canRecover: CanRecover[F]): EitherT[F, AA, BB]
Inherited from
error