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

Public Member Functions

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

Definition at line 23 of file DataStorageException.cs.

Constructor & Destructor Documentation

Deveel.Data.Store.DataStorageException.DataStorageException ( int  errorCode)
inline

Definition at line 24 of file DataStorageException.cs.

25  : this(errorCode, null) {
26  }
Deveel.Data.Store.DataStorageException.DataStorageException ( int  errorCode,
string  message 
)
inline

Definition at line 28 of file DataStorageException.cs.

29  : this(errorCode, message, null) {
30  }
Deveel.Data.Store.DataStorageException.DataStorageException ( )
inline

Definition at line 32 of file DataStorageException.cs.

33  : this(null) {
34  }
Deveel.Data.Store.DataStorageException.DataStorageException ( string  message)
inline

Definition at line 36 of file DataStorageException.cs.

37  : this(message, null) {
38  }
Deveel.Data.Store.DataStorageException.DataStorageException ( string  message,
Exception  innerException 
)
inline

Definition at line 40 of file DataStorageException.cs.

41  : this(StorageErrorCodes.Unknown, message, innerException) {
42  }
Deveel.Data.Store.DataStorageException.DataStorageException ( int  errorCode,
string  message,
Exception  innerException 
)
inline

Definition at line 44 of file DataStorageException.cs.

45  : base(errorCode, message, innerException) {
46  }

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