mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
13 lines
197 B
C#
13 lines
197 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Configuration
|
|
{
|
|
public class ConfigException : Exception
|
|
{
|
|
public ConfigException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|