mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01: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;
|
|
}
|
|
}
|
|
}
|