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

An error occurring while evaluating an SqlExpression. More...

Inheritance diagram for Deveel.Data.Sql.Expressions.ExpressionEvaluateException:
Deveel.Data.Sql.Expressions.SqlExpressionException Deveel.Data.Diagnostics.ErrorException

Public Member Functions

 ExpressionEvaluateException ()
 Constructs a new exception with no detailed message. More...
 
 ExpressionEvaluateException (string message)
 Constructs an exception with a message detailing the error. More...
 
 ExpressionEvaluateException (string message, Exception innerException)
 Constructs a new exception with a detailed message and the reference to an originating error. More...
 
- Public Member Functions inherited from Deveel.Data.Sql.Expressions.SqlExpressionException
 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

An error occurring while evaluating an SqlExpression.

See also
SqlExpression.Evaluate(Deveel.Data.Sql.Expressions.EvaluateContext)

Definition at line 24 of file ExpressionEvaluateException.cs.

Constructor & Destructor Documentation

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

Constructs a new exception with no detailed message.

Definition at line 28 of file ExpressionEvaluateException.cs.

29  : this("An error occurred while evaluating a SQL Expression.") {
30  }
Deveel.Data.Sql.Expressions.ExpressionEvaluateException.ExpressionEvaluateException ( string  message)
inline

Constructs an exception with a message detailing the error.

Parameters
messageThe details message of the exception.

Definition at line 36 of file ExpressionEvaluateException.cs.

37  : this(message, null) {
38  }
Deveel.Data.Sql.Expressions.ExpressionEvaluateException.ExpressionEvaluateException ( string  message,
Exception  innerException 
)
inline

Constructs a new exception with a detailed message and the reference to an originating error.

Parameters
messageThe details message of the exception.
innerExceptionThe inner error of this exception.

Definition at line 46 of file ExpressionEvaluateException.cs.

47  : base(ExpressionErrorCodes.EvaluateError, message, innerException) {
48  }
ExpressionErrorCodes
Lists all the codes of errors in the expressions domain

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