btcpayserver/BTCPayServer/BitpayHttpException.cs
2020-06-28 21:44:35 -05:00

18 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BTCPayServer
{
public class BitpayHttpException : Exception
{
public BitpayHttpException(int code, string message) : base(message)
{
StatusCode = code;
}
public int StatusCode
{
get; set;
}
}
}