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

Public Member Functions

 InvalidObjectIdException (ObjectId id)
 
 InvalidObjectIdException (ObjectId id, string message)
 
- Public Member Functions inherited from Deveel.Data.Store.DataStorageException
 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...
 

Properties

ObjectId ObjectId [get, private 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 InvalidObjectIdException.cs.

Constructor & Destructor Documentation

Deveel.Data.Store.InvalidObjectIdException.InvalidObjectIdException ( ObjectId  id)
inline

Definition at line 21 of file InvalidObjectIdException.cs.

22  : this(id, String.Format("The given object reference {0} is invalid.", id)) {
23  }
A long string in the system.
Deveel.Data.Store.InvalidObjectIdException.InvalidObjectIdException ( ObjectId  id,
string  message 
)
inline

Definition at line 25 of file InvalidObjectIdException.cs.

26  : base(StorageErrorCodes.InvalidObjectId, message) {
27  ObjectId = id;
28  }

Property Documentation

ObjectId Deveel.Data.Store.InvalidObjectIdException.ObjectId
getprivate set

Definition at line 30 of file InvalidObjectIdException.cs.


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