UDXPacketLossException constructor
UDXPacketLossException(
- String context,
- 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
);