btcpayserver/BTCPayServer/Configuration/ConfigException.cs

13 lines
197 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System;
namespace BTCPayServer.Configuration
{
public class ConfigException : Exception
{
public ConfigException(string message) : base(message)
{
}
}
}