mirror of
https://github.com/AdilElFarissi/btcpay-opensimulator-plugin.git
synced 2026-08-14 09:02:53 +00:00
17 lines
303 B
C#
17 lines
303 B
C#
using System;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public class BitpayHttpException : Exception
|
|
{
|
|
public BitpayHttpException(int code, string message) : base(message)
|
|
{
|
|
StatusCode = code;
|
|
}
|
|
public int StatusCode
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|