mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-08 19:32:10 +01:00
12 lines
306 B
C#
12 lines
306 B
C#
|
namespace BTCPayServer.Abstractions.Custodians;
|
||
|
|
||
|
public class AssetBalancesUnavailableException : CustodianApiException
|
||
|
{
|
||
|
|
||
|
public AssetBalancesUnavailableException(System.Exception e) : base(500, "asset-balances-unavailable", $"Cannot fetch the asset balances: {e.Message}", e)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|