BTCPayServer.Vault/BTCPayServer.Hwi/HwiException.cs
2019-10-27 00:25:14 +09:00

17 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BTCPayServer.Hwi
{
public class HwiException : Exception
{
public HwiErrorCode ErrorCode { get; }
public HwiException(HwiErrorCode errorCode, string message) : base(message)
{
ErrorCode = errorCode;
}
}
}