Files
LeafWeb/Core/Remote/PiscalClientException.cs
T

11 lines
169 B
C#

using System;
namespace LeafWeb.Core.Remote
{
public class PiscalClientException : Exception
{
public PiscalClientException(string error) : base(error)
{
}
}
}