Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 4.19 KB

File metadata and controls

62 lines (39 loc) · 4.19 KB

VirtualFileSystemException Constructors

Overloads
VirtualFileSystemException() Initializes a new instance of the VirtualFileSystemException class.
VirtualFileSystemException(string) Initializes a new instance of the VirtualFileSystemException class with a message that describes the error.
VirtualFileSystemException(string, Exception) Initializes a new instance of the VirtualFileSystemException class with a message and an inner exception that is the cause of this exception.

VirtualFileSystemException() Constructor

Initializes a new instance of the VirtualFileSystemException class.

public VirtualFileSystemException();

VirtualFileSystemException(string) Constructor

Initializes a new instance of the VirtualFileSystemException class with a message that describes the error.

public VirtualFileSystemException(string message);

Parameters

message System.String

The error message that explains the reason for the exception.

VirtualFileSystemException(string, Exception) Constructor

Initializes a new instance of the VirtualFileSystemException class with a message and an inner exception that is the cause of this exception.

public VirtualFileSystemException(string message, System.Exception innerException);

Parameters

message System.String

The error message that explains the reason for the exception.

innerException System.Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.