Piscal Queue working more resilient to error
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user