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

Public Member Functions

 SqlExpressionException ()
 
 SqlExpressionException (string message)
 
 SqlExpressionException (string message, Exception innerException)
 
 SqlExpressionException (ExpressionErrorCodes errorCode)
 
 SqlExpressionException (ExpressionErrorCodes errorCode, string message)
 
 SqlExpressionException (ExpressionErrorCodes 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 SqlExpressionException.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Expressions.SqlExpressionException.SqlExpressionException ( )
inline

Definition at line 23 of file SqlExpressionException.cs.

24  : this(null) {
25  }
Deveel.Data.Sql.Expressions.SqlExpressionException.SqlExpressionException ( string  message)
inline

Definition at line 27 of file SqlExpressionException.cs.

28  : this(message, null) {
29  }
Deveel.Data.Sql.Expressions.SqlExpressionException.SqlExpressionException ( string  message,
Exception  innerException 
)
inline

Definition at line 31 of file SqlExpressionException.cs.

32  : this(ExpressionErrorCodes.Unknown, message, innerException) {
33  }
ExpressionErrorCodes
Lists all the codes of errors in the expressions domain
Deveel.Data.Sql.Expressions.SqlExpressionException.SqlExpressionException ( ExpressionErrorCodes  errorCode)
inline

Definition at line 35 of file SqlExpressionException.cs.

36  : this(errorCode, null) {
37  }
Deveel.Data.Sql.Expressions.SqlExpressionException.SqlExpressionException ( ExpressionErrorCodes  errorCode,
string  message 
)
inline

Definition at line 39 of file SqlExpressionException.cs.

40  : this(errorCode, message, null) {
41  }
Deveel.Data.Sql.Expressions.SqlExpressionException.SqlExpressionException ( ExpressionErrorCodes  errorCode,
string  message,
Exception  innerException 
)
inline

Definition at line 43 of file SqlExpressionException.cs.

44  : base((int)errorCode, message, innerException) {
45  }

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