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

Public Member Functions

 PreparationRequiredException (string typeName)
 
 PreparationRequiredException (string typeName, string message)
 
- Public Member Functions inherited from Deveel.Data.Sql.Statements.StatementException
 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...
 

Properties

string TypeName [get, set]
 
- 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 PreparationRequiredException.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Statements.PreparationRequiredException.PreparationRequiredException ( string  typeName)
inline

Definition at line 23 of file PreparationRequiredException.cs.

24  : this(typeName, String.Format("The Statement '{0}' requires preparation before being executed", typeName)) {
25  }
A long string in the system.
Deveel.Data.Sql.Statements.PreparationRequiredException.PreparationRequiredException ( string  typeName,
string  message 
)
inline

Definition at line 27 of file PreparationRequiredException.cs.

28  : base(message) {
29  TypeName = typeName;
30  }

Property Documentation

string Deveel.Data.Sql.Statements.PreparationRequiredException.TypeName
getset

Definition at line 21 of file PreparationRequiredException.cs.


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