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