btcpayserver/BTCPayServer/BitpayHttpException.cs
2017-10-27 17:53:04 +09:00

19 lines
359 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;
}
}
}