YamuxStreamProtocolException constructor
YamuxStreamProtocolException(})
Implementation
YamuxStreamProtocolException(
String message, {
required this.protocolError,
required this.streamId,
Exception? originalException,
StackTrace? originalStackTrace,
Map<String, dynamic>? context,
}) : super._internal(
message,
originalException: originalException,
originalStackTrace: originalStackTrace,
context: {
'protocolError': protocolError,
'streamId': streamId,
...?context,
},
);