namespace ZB.MOM.WW.MxGateway.Server.Sessions;
internal sealed class SessionCloseStartedException : Exception
{
/// Initializes a new instance of the class.
/// The exception message.
/// The exception that caused this error.
public SessionCloseStartedException(
string message,
Exception innerException)
: base(message, innerException)
{
}
}