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