mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
16 lines
303 B
C#
16 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;
|
|
}
|
|
}
|
|
}
|