Files
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)
{
}
}
}