12 lines
217 B
C#
12 lines
217 B
C#
using System;
|
|
|
|
namespace Thermo.Active.CmsConnectGateway.Exceptions
|
|
{
|
|
public class GatewayException : Exception
|
|
{
|
|
public GatewayException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|