ExceptionChain

A forward range representing an exception chain.

Constructors

this
this(Throwable exception)

Constructor for exception chain

Members

Functions

empty
bool empty()

Check if exception chain exhausted or not.

front
Throwable front()

Get current throwable in exception chain

popFront
void popFront()

Move to next exception in chain

save
typeof(this) save()

Save exception chain at current point.

Return Value

a forward range of exceptions

Meta