final class FAErrorHandlingOps[F[*], B] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FAErrorHandlingOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new FAErrorHandlingOps(fb: () => F[B])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def catchNonFatal[A](f: PartialFunction[Throwable, A])(implicit canCatch: CanCatch[F]): F[Either[A, B]]
- def catchNonFatalThrowable(implicit canCatch: CanCatch[F]): F[Either[Throwable, B]]
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def handleNonFatal[BB >: B](handleError: (Throwable) => BB)(implicit canHandleError: CanHandleError[F]): F[BB]
- def handleNonFatalWith[BB >: B](handleError: (Throwable) => F[BB])(implicit canHandleError: CanHandleError[F]): F[BB]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def recoverFromNonFatal[BB >: B](handleError: PartialFunction[Throwable, BB])(implicit canRecover: CanRecover[F]): F[BB]
- def recoverFromNonFatalWith[BB >: B](handleError: PartialFunction[Throwable, F[BB]])(implicit canRecover: CanRecover[F]): F[BB]
- def toString(): String
- Definition Classes
- Any