Function HelpNeedingException.this

Constructor for HelpNeedingException

this (
  HelpInformationProvider[] providers,
  string file = __FILE__,
  ulong line = cast(ulong)__LINE__,
  object.Throwable next = null
) pure nothrow @nogc @safe;

this (
  HelpInformationProvider[] providers,
  object.Throwable next,
  string file = __FILE__,
  ulong line = cast(ulong)__LINE__
) pure nothrow @nogc @safe;

Parameters

NameDescription
providers a list of help providers used to print exception message.
file file in which exception occured.
line line at which exception was thrown.
next next exception in chain of exceptions.