C# Класс Volante.DatabaseException

Exception thrown by database implementation
Наследование: System.ApplicationException
Показать файл Открыть проект

Открытые методы

Метод Описание
DatabaseException ( ErrorCode errorCode ) : System

Get original exception if DatabaseException was thrown as the result of catching some other exception within database implementation. DatabaseException is used as a wrapper of other exceptions to avoid cascading propagation of throw and try/catch.

DatabaseException ( ErrorCode errorCode, Exception x ) : System
DatabaseException ( ErrorCode errorCode, object param ) : System
DatabaseException ( ErrorCode errorCode, object param, System x ) : System

Описание методов

DatabaseException() публичный Метод

Get original exception if DatabaseException was thrown as the result of catching some other exception within database implementation. DatabaseException is used as a wrapper of other exceptions to avoid cascading propagation of throw and try/catch.
public DatabaseException ( ErrorCode errorCode ) : System
errorCode ErrorCode
Результат System

DatabaseException() публичный Метод

public DatabaseException ( ErrorCode errorCode, Exception x ) : System
errorCode ErrorCode
x System.Exception
Результат System

DatabaseException() публичный Метод

public DatabaseException ( ErrorCode errorCode, object param ) : System
errorCode ErrorCode
param object
Результат System

DatabaseException() публичный Метод

public DatabaseException ( ErrorCode errorCode, object param, System x ) : System
errorCode ErrorCode
param object
x System
Результат System