using MxGateway.Contracts.Proto; namespace MxGateway.Client; public sealed class MxGatewayAuthenticationException : MxGatewayException { public MxGatewayAuthenticationException( string message, string? sessionId = null, string? correlationId = null, ProtocolStatus? protocolStatus = null, int? hResult = null, IReadOnlyList? statuses = null, Exception? innerException = null) : base( message, sessionId, correlationId, protocolStatus, hResult, statuses ?? [], innerException) { } }