FileExistsException

Exception, to be thrown when attempting to create a file or directory and finding that one already exists with the same name.

It is a normal Exception but with an attached filename string.

Constructors

this
this(string message, string file, size_t line, Throwable nextInChain)

Create a new FileExistsException, without attaching a filename.

this
this(string message, string filename, string file, size_t line, Throwable nextInChain)

Create a new FileExistsException, attaching a filename.

Members

Variables

filename
string filename;

The name of the file.

Meta