11 lines
169 B
C#
11 lines
169 B
C#
using System;
|
|
|
|
namespace LeafWeb.Core.Remote
|
|
{
|
|
public class PiscalClientException : Exception
|
|
{
|
|
public PiscalClientException(string error) : base(error)
|
|
{
|
|
}
|
|
}
|
|
} |