FormatException.this

Creates a new instance of FormatException.

  1. this()
  2. this(string msg, string fn, size_t ln, Throwable next)
    class FormatException
    @safe @nogc pure nothrow
    this
    (
    string msg
    ,
    string fn = __FILE__
    ,
    size_t ln = __LINE__
    ,
    Throwable next = null
    )

Parameters

msg string

message of the exception

fn string

file name of the file where the exception was created (optional)

ln size_t

line number of the file where the exception was created (optional)

next Throwable

for internal use, should always be null (optional)

Meta