Piscal Queue working more resilient to error

This commit is contained in:
2016-04-18 10:44:36 -04:00
parent 6623aa48ea
commit ca1a235c1d
21 changed files with 418 additions and 176 deletions
+3 -1
View File
@@ -4,8 +4,10 @@ namespace LeafWeb.Core.Remote
{
public class PiscalClientException : Exception
{
public PiscalClientException(string error) : base(error)
public int LeafInputId { get; private set; }
public PiscalClientException(int leafInputId, string error) : base(error)
{
LeafInputId = leafInputId;
}
}
}