mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 10:32:13 +01:00
12 lines
354 B
C#
12 lines
354 B
C#
|
namespace BTCPayServer.Abstractions.Custodians;
|
||
|
|
||
|
public class WithdrawalNotFoundException : CustodianApiException
|
||
|
{
|
||
|
private string WithdrawalId { get; }
|
||
|
|
||
|
public WithdrawalNotFoundException(string withdrawalId) : base(404, "withdrawal-not-found", $"Could not find withdrawal ID {withdrawalId}.")
|
||
|
{
|
||
|
WithdrawalId = withdrawalId;
|
||
|
}
|
||
|
}
|