DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | List of all members
Deveel.Data.Transactions.TransactionException Class Reference
Inheritance diagram for Deveel.Data.Transactions.TransactionException:
Deveel.Data.Diagnostics.ErrorException

Public Member Functions

 TransactionException (int errorCode)
 
 TransactionException (int errorCode, string message)
 
 TransactionException (int errorCode, string message, Exception innerException)
 
- Public Member Functions inherited from Deveel.Data.Diagnostics.ErrorException
 ErrorException (int errorCode)
 
 ErrorException (int errorCode, string message)
 
 ErrorException ()
 
 ErrorException (string message)
 
 ErrorException (string message, Exception innerException)
 
 ErrorException (int errorCode, string message, Exception innerException)
 
ErrorEvent AsEvent (IEventSource source)
 Transforms the error to an event to be passed to the diagnostics, given a source where this was generated. More...
 

Additional Inherited Members

- Properties inherited from Deveel.Data.Diagnostics.ErrorException
int ErrorCode [get, private set]
 Gets a numeric value representing the code of the error catched by this exception. More...
 
virtual ErrorLevel ErrorLevel [get]
 Gets the error level of this exception. More...
 

Detailed Description

Definition at line 22 of file TransactionException.cs.

Constructor & Destructor Documentation

Deveel.Data.Transactions.TransactionException.TransactionException ( int  errorCode)
inline

Definition at line 23 of file TransactionException.cs.

24  : base(errorCode) {
25  }
Deveel.Data.Transactions.TransactionException.TransactionException ( int  errorCode,
string  message 
)
inline

Definition at line 27 of file TransactionException.cs.

28  : base(errorCode, message) {
29  }
Deveel.Data.Transactions.TransactionException.TransactionException ( int  errorCode,
string  message,
Exception  innerException 
)
inline

Definition at line 31 of file TransactionException.cs.

32  : base(errorCode, message, innerException) {
33  }

The documentation for this class was generated from the following file: