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

Exception thrown where various problems occur within the database. More...

Inheritance diagram for Deveel.Data.DatabaseSystemException:
Deveel.Data.Diagnostics.ErrorException Deveel.Data.ObjectNotFoundException Deveel.Data.Routines.RoutineNotFouncException

Public Member Functions

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

Exception thrown where various problems occur within the database.

Definition at line 25 of file DatabaseSystemException.cs.

Constructor & Destructor Documentation

Deveel.Data.DatabaseSystemException.DatabaseSystemException ( int  errorCode)
inline

Parameters
errorCode

Definition at line 30 of file DatabaseSystemException.cs.

31  : this(errorCode, null) {
32  }
Deveel.Data.DatabaseSystemException.DatabaseSystemException ( int  errorCode,
string  message 
)
inline

Parameters
errorCode
message

Definition at line 39 of file DatabaseSystemException.cs.

40  : this(errorCode, message, null) {
41  }
Deveel.Data.DatabaseSystemException.DatabaseSystemException ( string  message)
inline

Parameters
message

Definition at line 47 of file DatabaseSystemException.cs.

48  : this(message, null) {
49  }
Deveel.Data.DatabaseSystemException.DatabaseSystemException ( string  message,
Exception  innerException 
)
inline

Parameters
message
innerException

Definition at line 56 of file DatabaseSystemException.cs.

57  : this(SystemErrorCodes.Unknown, message, innerException) {
58  }
Deveel.Data.DatabaseSystemException.DatabaseSystemException ( int  errorCode,
string  message,
Exception  innerException 
)
inline

Parameters
errorCode
message
innerException

Definition at line 66 of file DatabaseSystemException.cs.

67  : base(errorCode, message, innerException) {
68  }

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