FileException.this

Constructor which takes an error message.

  1. this(const(char)[] name, const(char)[] msg, string file, size_t line)
    class FileException
    @safe pure
    this
    (
    scope const(char)[] name
    ,
    scope const(char)[] msg
    ,
    string file = __FILE__
    ,
    size_t line = __LINE__
    )
  2. this(const(char)[] name, uint errno, string file, size_t line)

Parameters

name const(char)[]

Name of file for which the error occurred.

msg const(char)[]

Message describing the error.

file string

The file where the error occurred.

line size_t

The line where the error occurred.

Meta