Throwable.next

  1. inout(Throwable) next [@property getter]
    class Throwable
    @property @safe inout return scope pure nothrow @nogc
    inout(Throwable)
    next
    ()
  2. Throwable next [@property setter]

Return Value

Type: inout(Throwable)

A reference to the next error in the list. This is used when a new Throwable is thrown from inside a catch block. The originally caught Exception will be chained to the new Throwable via this field.

Meta