17 lines
304 B
C#
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;
|
|
}
|
|
}
|
|
}
|