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

An error that occurs when compiling a input string into a SQL object. More...

Inheritance diagram for Deveel.Data.Sql.Parser.SqlParseException:
Deveel.Data.Diagnostics.ErrorException

Public Member Functions

 SqlParseException ()
 
 SqlParseException (int errorCode)
 
 SqlParseException (string message)
 
 SqlParseException (int errorCode, string message)
 
 SqlParseException (string message, Exception innerException)
 
 SqlParseException (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 error that occurs when compiling a input string into a SQL object.

Definition at line 26 of file SqlParseException.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Parser.SqlParseException.SqlParseException ( )
inline

Definition at line 27 of file SqlParseException.cs.

28  : this(CompileErrorCodes.SyntaxError) {
29  }
Deveel.Data.Sql.Parser.SqlParseException.SqlParseException ( int  errorCode)
inline

Definition at line 31 of file SqlParseException.cs.

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

Definition at line 35 of file SqlParseException.cs.

36  : this(CompileErrorCodes.SyntaxError, message) {
37  }
Deveel.Data.Sql.Parser.SqlParseException.SqlParseException ( int  errorCode,
string  message 
)
inline

Definition at line 39 of file SqlParseException.cs.

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

Definition at line 43 of file SqlParseException.cs.

44  : this(CompileErrorCodes.SyntaxError, message, innerException) {
45  }
Deveel.Data.Sql.Parser.SqlParseException.SqlParseException ( int  errorCode,
string  message,
Exception  innerException 
)
inline

Definition at line 47 of file SqlParseException.cs.

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

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