The OpenD Programming Language

MirThrowableImpl.this

Generic multiargument overload. Constructs a string using the print function.

  1. this(const(char)[] msg, string file, size_t line, Throwable nextInChain)
  2. this(const(char)[] msg, Throwable nextInChain, string file, size_t line)
  3. this(string msg, string file, size_t line, Throwable nextInChain)
  4. this(string msg, Throwable nextInChain, string file, size_t line)
  5. this(Args args, string file, size_t line, Throwable nextInChain)
    mixintemplate MirThrowableImpl()
    pure
    this
    (
    Args...
    )
    (
    auto ref scope const Args args
    ,
    string file = __FILE__
    ,
    size_t line = __LINE__
    ,)
    if (
    Args.length > 1 &&
    !is(Args[$ - 1] == Throwable)
    )

Meta