Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
InconsistencyException.cs
1using System;
2using Waher.Events;
3
5{
10 {
11 private readonly string collection;
12
16 public InconsistencyException(string Collection, string Message)
17 : base(Message)
18 {
19 this.collection = Collection;
20 }
21
25 public string Object => this.collection;
26 }
27}
Base class for database exceptions.
Database inconsistency exception. Raised when an inconsistency in the database has been found.
string Object
Object identifier related to the object. (Collection)
InconsistencyException(string Collection, string Message)
Database inconsistency exception. Raised when an inconsistency in the database has been found.
Implement this interface on exception classes to allow the log to extract object information in corre...
Definition: IEventObject.cs:8