Class DurabilityException
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
errorCodeTyphonErrorCodeNumeric error code identifying the specific failure.
messagestringHuman-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
errorCodeTyphonErrorCodeNumeric error code identifying the specific failure.
messagestringHuman-readable description of the durability error.
innerExceptionExceptionThe exception that caused this durability error.