Files
LeafWeb/Core/Remote/PiscalClientException.cs
T

13 lines
263 B
C#

using System;
namespace LeafWeb.Core.Remote
{
public class PiscalClientException : Exception
{
public int LeafInputId { get; private set; }
public PiscalClientException(int leafInputId, string error) : base(error)
{
LeafInputId = leafInputId;
}
}
}