26 lines
657 B
C#
26 lines
657 B
C#
using MxGateway.Contracts.Proto;
|
|
|
|
namespace MxGateway.Client;
|
|
|
|
public sealed class MxGatewayAuthorizationException : MxGatewayException
|
|
{
|
|
public MxGatewayAuthorizationException(
|
|
string message,
|
|
string? sessionId = null,
|
|
string? correlationId = null,
|
|
ProtocolStatus? protocolStatus = null,
|
|
int? hResult = null,
|
|
IReadOnlyList<MxStatusProxy>? statuses = null,
|
|
Exception? innerException = null)
|
|
: base(
|
|
message,
|
|
sessionId,
|
|
correlationId,
|
|
protocolStatus,
|
|
hResult,
|
|
statuses ?? [],
|
|
innerException)
|
|
{
|
|
}
|
|
}
|