15 lines
357 B
C#
15 lines
357 B
C#
using System;
|
|
|
|
namespace MxGateway.Worker.MxAccess;
|
|
|
|
public sealed class MxAccessEventQueueOverflowException : Exception
|
|
{
|
|
public MxAccessEventQueueOverflowException(int capacity)
|
|
: base($"MXAccess outbound event queue reached its configured capacity of {capacity}.")
|
|
{
|
|
Capacity = capacity;
|
|
}
|
|
|
|
public int Capacity { get; }
|
|
}
|