UDXPacketLossException constructor

UDXPacketLossException(
  1. String context,
  2. dynamic originalError
)

Implementation

UDXPacketLossException(
  String context,
  dynamic originalError,
) : super(
        'UDX connection failed: Packet permanently lost after max retries',
        context,
        originalError,
        isTransient: false, // Permanent packet loss is not transient
      );