mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
16 lines
354 B
C#
16 lines
354 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Payments
|
|
{
|
|
public class PaymentMethodUnavailableException : Exception
|
|
{
|
|
public PaymentMethodUnavailableException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
public PaymentMethodUnavailableException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|