Files
cms_thermo_active/Thermo.Active.CmsConnectGateway/Exceptions/GatewayException.cs
T
2020-04-09 14:37:07 +02:00

16 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Thermo.Active.CmsConnectGateway.Exceptions
{
public class GatewayException: Exception
{
public GatewayException(string message): base(message)
{
}
}
}