Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DatabaseException.cs
1using System;
2using System.Collections.Generic;
3
5{
9 public class DatabaseException : Exception
10 {
15 public DatabaseException(string Message)
16 : base(Message)
17 {
18 }
19
25 public DatabaseException(string Message, Exception InnerException)
26 : base(Message, InnerException)
27 {
28 }
29 }
30}
Base class for database exceptions.
DatabaseException(string Message)
Base class for database exceptions.
DatabaseException(string Message, Exception InnerException)
Base class for database exceptions.