OutOfOrderCallError.this

Constructs an $(D_PSYMBOL OutOfOrderCallError).

class OutOfOrderCallError
pure @safe
this
(
string name
,
string[] arguments
,
size_t expected
,
size_t got
,
string file
,
size_t line
,
Throwable nextInChain
)

Parameters

name string

Unexpected call name.

arguments string[]

name's arguments.

expected size_t

Expected position in the call queue.

got size_t

Actual position in the call queue.

file string

File.

line size_t

Line number.

nextInChain Throwable

The next error.

Meta