DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | List of all members
Deveel.Data.Sql.Statements.StatementPrepareException Class Reference

An exception that happens during the SqlStatement.Prepare(IExpressionPreparer, IQueryContext). More...

Inheritance diagram for Deveel.Data.Sql.Statements.StatementPrepareException:
Deveel.Data.Sql.SqlErrorException Deveel.Data.Diagnostics.ErrorException

Public Member Functions

 StatementPrepareException ()
 
 StatementPrepareException (int errorCode)
 
 StatementPrepareException (string message)
 
 StatementPrepareException (int errorCode, string message)
 
 StatementPrepareException (string message, Exception innerException)
 
 StatementPrepareException (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

An exception that happens during the SqlStatement.Prepare(IExpressionPreparer, IQueryContext).

Definition at line 26 of file StatementPrepareException.cs.

Constructor & Destructor Documentation

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

Definition at line 27 of file StatementPrepareException.cs.

28  : this(SqlModelErrorCodes.StatementPrepare) {
29  }
Deveel.Data.Sql.Statements.StatementPrepareException.StatementPrepareException ( int  errorCode)
inline

Definition at line 31 of file StatementPrepareException.cs.

32  : base(errorCode) {
33  }
Deveel.Data.Sql.Statements.StatementPrepareException.StatementPrepareException ( string  message)
inline

Definition at line 35 of file StatementPrepareException.cs.

36  : this(SqlModelErrorCodes.StatementPrepare, message) {
37  }
Deveel.Data.Sql.Statements.StatementPrepareException.StatementPrepareException ( int  errorCode,
string  message 
)
inline

Definition at line 39 of file StatementPrepareException.cs.

40  : base(errorCode, message) {
41  }
Deveel.Data.Sql.Statements.StatementPrepareException.StatementPrepareException ( string  message,
Exception  innerException 
)
inline

Definition at line 43 of file StatementPrepareException.cs.

44  : this(SqlModelErrorCodes.StatementPrepare, message, innerException) {
45  }
Deveel.Data.Sql.Statements.StatementPrepareException.StatementPrepareException ( int  errorCode,
string  message,
Exception  innerException 
)
inline

Definition at line 47 of file StatementPrepareException.cs.

48  : base(errorCode, message, innerException) {
49  }

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