| 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. |
Initializes a new instance of the VirtualFileSystemException class.
public VirtualFileSystemException();
Initializes a new instance of the VirtualFileSystemException class with a message that describes the error.
public VirtualFileSystemException(string message);
message System.String
The error message that explains the reason for the exception.
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);
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.