Table of Contents

Class DurabilityException

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

Base class for all durability subsystem exceptions (WAL, checkpoint, recovery).

public class DurabilityException : TyphonException, ISerializable
Inheritance
DurabilityException
Implements
Derived
Inherited Members

Constructors

DurabilityException(TyphonErrorCode, string)

Creates a new DurabilityException with the specified error code and message.

public DurabilityException(TyphonErrorCode errorCode, string message)

Parameters

errorCode TyphonErrorCode

Numeric error code identifying the specific failure.

message string

Human-readable description of the durability error.

DurabilityException(TyphonErrorCode, string, Exception)

Creates a new DurabilityException with the specified error code, message, and inner exception.

public DurabilityException(TyphonErrorCode errorCode, string message, Exception innerException)

Parameters

errorCode TyphonErrorCode

Numeric error code identifying the specific failure.

message string

Human-readable description of the durability error.

innerException Exception

The exception that caused this durability error.