Packages

final case class Die(value: Throwable) extends Cause[Nothing] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Die
  2. Cause
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Die(value: Throwable)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def &&[E1 >: Nothing](that: Cause[E1]): Cause[E1]

    Returns a cause that fails for this cause and the specified cause, in parallel.

    Returns a cause that fails for this cause and the specified cause, in parallel.

    Definition Classes
    Cause
  4. final def ++[E1 >: Nothing](that: Cause[E1]): Cause[E1]

    Returns a cause that fails for this cause and the specified cause, in sequence.

    Returns a cause that fails for this cause and the specified cause, in sequence.

    Definition Classes
    Cause
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def as[E1](e: => E1): Cause[E1]

    Maps the error value of this cause to the specified constant value.

    Maps the error value of this cause to the specified constant value.

    Definition Classes
    Cause
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. final def contains[E1 >: Nothing](that: Cause[E1]): Boolean

    Determines if this cause contains or is equal to the specified cause.

    Determines if this cause contains or is equal to the specified cause.

    Definition Classes
    Cause
  10. final def defects: List[Throwable]

    Extracts a list of non-recoverable errors from the Cause.

    Extracts a list of non-recoverable errors from the Cause.

    Definition Classes
    Cause
  11. final def dieOption: Option[Throwable]

    Returns the Throwable associated with the first Die in this Cause if one exists.

    Returns the Throwable associated with the first Die in this Cause if one exists.

    Definition Classes
    Cause
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(that: Any): Boolean
    Definition Classes
    Die → Equals → AnyRef → Any
  14. def failureOption: Option[Nothing]

    Returns the E associated with the first Fail in this Cause if one exists.

    Returns the E associated with the first Fail in this Cause if one exists.

    Definition Classes
    Cause
  15. final def failureOrCause: Either[Nothing, Cause[Nothing]]

    Retrieve the first checked error on the Left if available, if there are no checked errors return the rest of the Cause that is known to contain only Die or Interrupt causes.

    Retrieve the first checked error on the Left if available, if there are no checked errors return the rest of the Cause that is known to contain only Die or Interrupt causes.

    Definition Classes
    Cause
  16. def failureTraceOption: Option[(Nothing, Option[ZTrace])]

    Returns the E associated with the first Fail in this Cause if one exists, along with its (optional) trace.

    Returns the E associated with the first Fail in this Cause if one exists, along with its (optional) trace.

    Definition Classes
    Cause
  17. final def failureTraceOrCause: Either[(Nothing, Option[ZTrace]), Cause[Nothing]]

    Retrieve the first checked error and its trace on the Left if available, if there are no checked errors return the rest of the Cause that is known to contain only Die or Interrupt causes.

    Retrieve the first checked error and its trace on the Left if available, if there are no checked errors return the rest of the Cause that is known to contain only Die or Interrupt causes.

    Definition Classes
    Cause
  18. final def failures: List[Nothing]

    Produces a list of all recoverable errors E in the Cause.

    Produces a list of all recoverable errors E in the Cause.

    Definition Classes
    Cause
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. final def find[Z](f: PartialFunction[Cause[Nothing], Z]): Option[Z]
    Definition Classes
    Cause
  21. final def flatMap[E1](f: (Nothing) => Cause[E1]): Cause[E1]
    Definition Classes
    Cause
  22. final def flatten[E1](implicit ev: <:<[Nothing, Cause[E1]]): Cause[E1]
    Definition Classes
    Cause
  23. final def fold[Z](empty: => Z, failCase: (Nothing) => Z, dieCase: (Throwable) => Z, interruptCase: (FiberId) => Z)(thenCase: (Z, Z) => Z, bothCase: (Z, Z) => Z, tracedCase: (Z, ZTrace) => Z): Z
    Definition Classes
    Cause
  24. final def foldLeft[Z](z: Z)(f: PartialFunction[(Z, Cause[Nothing]), Z]): Z
    Definition Classes
    Cause
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. final def interruptors: Set[FiberId]

    Returns a set of interruptors, fibers that interrupted the fiber described by this Cause.

    Returns a set of interruptors, fibers that interrupted the fiber described by this Cause.

    Definition Classes
    Cause
  27. final def isDie: Boolean
    Definition Classes
    Cause
  28. final def isEmpty: Boolean

    Determines if the Cause is empty.

    Determines if the Cause is empty.

    Definition Classes
    Cause
  29. final def isFailure: Boolean
    Definition Classes
    Cause
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. final def isInterrupted: Boolean

    Determines if the Cause contains an interruption.

    Determines if the Cause contains an interruption.

    Definition Classes
    Cause
  32. final def isInterruptedOnly: Boolean

    Determines if the Cause contains only interruptions and not any Die or Fail causes.

    Determines if the Cause contains only interruptions and not any Die or Fail causes.

    Definition Classes
    Cause
  33. final def keepDefects: Option[Cause[Nothing]]

    Remove all Fail and Interrupt nodes from this Cause, return only Die cause/finalizer defects.

    Remove all Fail and Interrupt nodes from this Cause, return only Die cause/finalizer defects.

    Definition Classes
    Cause
  34. final def map[E1](f: (Nothing) => E1): Cause[E1]
    Definition Classes
    Cause
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def prettyPrint: String

    Returns a String with the cause pretty-printed.

    Returns a String with the cause pretty-printed.

    Definition Classes
    Cause
  39. def productElementNames: Iterator[String]
    Definition Classes
    Product
  40. final def squash(implicit ev: IsSubtypeOfError[Nothing, Throwable]): Throwable

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable.

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable.

    Definition Classes
    Cause
  41. final def squashTrace(implicit ev: IsSubtypeOfError[Nothing, Throwable]): Throwable

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable.

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable. In addition, appends a new element to the suppressed exceptions of the Throwable, with this Cause "pretty printed" (in stackless mode) as the message.

    Definition Classes
    Cause
  42. final def squashTraceWith(f: (Nothing) => Throwable): Throwable

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable.

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable. In addition, appends a new element the to Throwables "caused by" chain, with this Cause "pretty printed" (in stackless mode) as the message.

    Definition Classes
    Cause
  43. final def squashWith(f: (Nothing) => Throwable): Throwable

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable.

    Squashes a Cause down to a single Throwable, chosen to be the "most important" Throwable.

    Definition Classes
    Cause
  44. final def stripFailures: Cause[Nothing]

    Discards all typed failures kept on this Cause.

    Discards all typed failures kept on this Cause.

    Definition Classes
    Cause
  45. final def stripSomeDefects(pf: PartialFunction[Throwable, Any]): Option[Cause[Nothing]]

    Remove all Die causes that the specified partial function is defined at, returning Some with the remaining causes or None if there are no remaining causes.

    Remove all Die causes that the specified partial function is defined at, returning Some with the remaining causes or None if there are no remaining causes.

    Definition Classes
    Cause
  46. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  47. final def traces: List[ZTrace]

    Grabs a list of execution traces from the cause.

    Grabs a list of execution traces from the cause.

    Definition Classes
    Cause
  48. final def untraced: Cause[Nothing]

    Returns a Cause that has been stripped of all tracing information.

    Returns a Cause that has been stripped of all tracing information.

    Definition Classes
    Cause
  49. val value: Throwable
  50. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. final def died: Boolean
    Definition Classes
    Cause
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use isDie

  2. final def failed: Boolean
    Definition Classes
    Cause
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use isFailure

  3. final def interrupted: Boolean

    Determines if the Cause contains an interruption.

    Determines if the Cause contains an interruption.

    Definition Classes
    Cause
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use isInterrupted

  4. final def interruptedOnly: Boolean

    Determines if the Cause contains only interruptions and not any Die or Fail causes.

    Determines if the Cause contains only interruptions and not any Die or Fail causes.

    Definition Classes
    Cause
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use isInterruptedOnly

Inherited from Cause[Nothing]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped