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