C# Класс Nexus.Transactions.TransactionException

The exception that is thrown if an error occurs during the processing of a transaction.
Наследование: System.Exception
Показать файл Открыть проект

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

Метод Описание
TransactionException ( ) : System

The default constructor.

TransactionException ( string message ) : System

A simple contructor that sets the exception's message.

TransactionException ( string message, Exception inner ) : System

A simple constructor the sets the exception's message and inner exception.

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

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

The default constructor.
public TransactionException ( ) : System
Результат System

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

A simple contructor that sets the exception's message.
public TransactionException ( string message ) : System
message string The exception's message.
Результат System

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

A simple constructor the sets the exception's message and inner exception.
public TransactionException ( string message, Exception inner ) : System
message string The exception's message.
inner System.Exception The ineer exception.
Результат System