Class StorageException
A storage-layer failure (I/O error, page fault, segment corruption).
public class StorageException : TyphonException, ISerializable
- Inheritance
-
StorageException
- Implements
- Derived
- Inherited Members
Constructors
StorageException(TyphonErrorCode, string)
Creates a new StorageException with the specified error code and message.
public StorageException(TyphonErrorCode errorCode, string message)
Parameters
errorCodeTyphonErrorCodeNumeric error code identifying the specific failure.
messagestringHuman-readable description of the storage error.
StorageException(TyphonErrorCode, string, Exception)
Creates a new StorageException with the specified error code, message, and inner exception.
public StorageException(TyphonErrorCode errorCode, string message, Exception innerException)
Parameters
errorCodeTyphonErrorCodeNumeric error code identifying the specific failure.
messagestringHuman-readable description of the storage error.
innerExceptionExceptionThe exception that caused this storage error.