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

Public Member Functions

 StatementException ()
 
 StatementException (int errorCode)
 
 StatementException (string message)
 
 StatementException (int errorCode, string message)
 
 StatementException (string message, Exception innerException)
 
 StatementException (int errorCode, string message, Exception innerException)
 
- Public Member Functions inherited from Deveel.Data.Sql.SqlErrorException
 SqlErrorException (int errorCode)
 
 SqlErrorException (int errorCode, string message)
 
 SqlErrorException (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 20 of file StatementException.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Statements.StatementException.StatementException ( )
inline

Definition at line 21 of file StatementException.cs.

22  : this(SqlModelErrorCodes.StatementExecute) {
23  }
Deveel.Data.Sql.Statements.StatementException.StatementException ( int  errorCode)
inline

Definition at line 25 of file StatementException.cs.

26  : base(errorCode) {
27  }
Deveel.Data.Sql.Statements.StatementException.StatementException ( string  message)
inline

Definition at line 29 of file StatementException.cs.

30  : this(SqlModelErrorCodes.StatementExecute, message) {
31  }
Deveel.Data.Sql.Statements.StatementException.StatementException ( int  errorCode,
string  message 
)
inline

Definition at line 33 of file StatementException.cs.

34  : base(errorCode, message) {
35  }
Deveel.Data.Sql.Statements.StatementException.StatementException ( string  message,
Exception  innerException 
)
inline

Definition at line 37 of file StatementException.cs.

38  : this(SqlModelErrorCodes.StatementExecute, message, innerException) {
39  }
Deveel.Data.Sql.Statements.StatementException.StatementException ( int  errorCode,
string  message,
Exception  innerException 
)
inline

Definition at line 41 of file StatementException.cs.

42  : base(errorCode, message, innerException) {
43  }

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