Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MissingNetworkException.cs
2{
6 public class MissingNetworkException : Exception
7 {
12 {
13 }
14
19 public MissingNetworkException(string Message)
20 : base(Message)
21 {
22 }
23
29 public MissingNetworkException(string Message, Exception InnerException)
30 : base(Message, InnerException)
31 {
32 }
33 }
34}
MissingNetworkException(string Message, Exception InnerException)
Initializes a new instance of the MissingNetworkException class with the specified message and inner ...
MissingNetworkException(string Message)
Initializes a new instance of the MissingNetworkException class with the specified message.
MissingNetworkException()
Creates an instance of a MissingNetworkException.