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; } } }