mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 10:32:13 +01:00
9 lines
232 B
C#
9 lines
232 B
C#
|
namespace BTCPayServer.Abstractions.Custodians;
|
||
|
|
||
|
public class DepositsUnavailableException : CustodianApiException
|
||
|
{
|
||
|
public DepositsUnavailableException(string message) : base(404, "deposits-unavailable", message)
|
||
|
{
|
||
|
}
|
||
|
}
|