mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
14 lines
387 B
C#
14 lines
387 B
C#
|
using System;
|
||
|
|
||
|
namespace BTCPayServer.Abstractions.Custodians;
|
||
|
|
||
|
public class BadConfigException : CustodianApiException
|
||
|
{
|
||
|
public string[] BadConfigKeys { get; set; }
|
||
|
|
||
|
public BadConfigException(string[] badConfigKeys) : base(500, "bad-custodian-account-config", "Wrong config values: " + String.Join(", ", badConfigKeys))
|
||
|
{
|
||
|
this.BadConfigKeys = badConfigKeys;
|
||
|
}
|
||
|
}
|