Ename.this

A constructor that creates an object of the Ename class with the given parameter in the form of some string value representing error message. If called without parameters, then the default parameter is empty string value.

class Ename
this
(
string name = ""
)

Parameters

name string

Text of error message.

Typical usage:

Ename ename = new Ename(`Wrong filename`);

Meta