Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OpenExchangeRatesException.cs
1using System;
2
4{
8 public class OpenExchangeRatesException : Exception
9 {
10 private readonly int code;
11
17 public OpenExchangeRatesException(int Code, string Message)
18 : base(Message)
19 {
20 this.code = Code;
21 }
22
26 public int Code => this.code;
27 }
28}
Exceptions based on errors reported by openexchangerates.org
OpenExchangeRatesException(int Code, string Message)
Exceptions based on errors reported by openexchangerates.org