Class VirtualException
The base class for exceptions that occur within the virtual storage library.
Implements
Inherited Members
Namespace: AkiraNetwork.VirtualStorageLibrary
Assembly: VirtualStorageLibrary.dll
Syntax
public abstract class VirtualException : Exception, ISerializable
Constructors
VirtualException()
Initializes a new instance of the VirtualException class.
Declaration
public VirtualException()
VirtualException(string)
Initializes a new instance of the VirtualException class with a specified error message.
Declaration
public VirtualException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The error message. |
VirtualException(string, Exception)
Initializes a new instance of the VirtualException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public VirtualException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The error message. |
Exception | innerException | The exception that is the cause of this exception. |