C# Class Nexus.Transactions.TransactionException

The exception that is thrown if an error occurs during the processing of a transaction.
Inheritance: System.Exception
Mostra file Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
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.

Method Details

TransactionException() public method

The default constructor.
public TransactionException ( ) : System
return System

TransactionException() public method

A simple contructor that sets the exception's message.
public TransactionException ( string message ) : System
message string The exception's message.
return System

TransactionException() public method

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.
return System