UnitTestException.this

Constructor with string

  1. this(in string message, string file = __FILE__, size_t line = __LINE__, Throwable next = null)
    class UnitTestException
    this
    @safe pure nothrow
    (
    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)

Parameters

message
Type: string

Exception message.

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.

Meta