Table of Contents

Class StorageException

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

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

errorCode TyphonErrorCode

Numeric error code identifying the specific failure.

message string

Human-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

errorCode TyphonErrorCode

Numeric error code identifying the specific failure.

message string

Human-readable description of the storage error.

innerException Exception

The exception that caused this storage error.