UnitTestException.this

Constructor with list strings

  1. this(in string message, string file = __FILE__, size_t line = __LINE__, Throwable next = null)
  2. this(in string[] messageLines, string file = __FILE__, size_t line = __LINE__, Throwable next = null)
    class UnitTestException
    this
    @safe pure nothrow
    (
    in string[] messageLines
    ,
    string file = __FILE__
    ,
    size_t line = __LINE__
    ,
    Throwable next = null
    )

Parameters

messageLines
Type: string[]

Exception message list.

file
Type: string

The file name that the assert failed in. Should be left as default.

line
Type: size_t

The file line that the assert failed in. Should be left as default.

next
Type: Throwable

Next Throwable object. Should be left as default.

Meta