sealed trait Failure[+E] extends Exit[E, Nothing]
Abstract Value Members
- abstract def asFailure: Some[Failure[E]]
- abstract def isInterrupted: Boolean
- abstract def isUninterrupted: Boolean
- abstract def leftMap[E1](f: (E) => E1): Exit[E1, Nothing]
- abstract def toEither: Either[List[Throwable], E]
- abstract def toEitherCompound: Either[Throwable, E]
- abstract def toThrowableEither(implicit ev: <:<[E, Throwable]): Either[Throwable, Nothing]
- abstract def toTry(implicit ev: <:<[E, Throwable]): Try[Nothing]
- abstract def trace: Trace[E]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- final def asInstanceOf[T0]: T0
- final def asSuccess: None.type
- def clone(): AnyRef
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def finalize(): Unit
- final def flatMap[E1 >: E, B](f: (Nothing) => Exit[E1, B]): Failure.this.type
- final def getClass(): Class[_ <: AnyRef]
- def hashCode(): Int
- final def isFailure: Boolean
- final def isInstanceOf[T0]: Boolean
- final def isSuccess: Boolean
- final def map[B](f: (Nothing) => B): Failure.this.type
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- final def synchronized[T0](arg0: => T0): T0
- def toString(): String
- final def toThrowable(conv: (E) => Throwable): Throwable
- final def toThrowable(implicit ev: <:<[E, Throwable]): Throwable
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
Inherited from Exit[E, Nothing]
Inherited from AnyRef
Inherited from Any