CanCatch

trait CanCatch[F[_]] extends CanCatch[F]
Authors

Kevin Lee

Since

2020-06-07

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

Type members

Types

override type Xor[A, B] = Either[A, B]
override type XorT[A, B] = EitherT[F, A, B]

Value members

Concrete methods

override def catchNonFatalEitherT[A, B](fab: => EitherT[F, A, B])(f: Throwable => A): EitherT[F, A, B]
Definition Classes
CanCatch

Inherited methods

def catchNonFatal[A, B](fb: => F[B])(f: Throwable => A): F[Either[A, B]]
Inherited from
CanCatch
def catchNonFatalEither[A, B](fab: => F[Either[A, B]])(f: Throwable => A): F[Either[A, B]]
Inherited from
CanCatch