This commit is contained in:
Francisco Guerrero 2026-07-24 20:51:06 -05:00
parent 79af4a6e03
commit 046f959078
1 changed files with 4 additions and 0 deletions

View File

@ -277,6 +277,10 @@ public class Envelope
// cause the channel to be closed.
return new HeaderExtractionResult.Error(e, streamId, bodyLength);
}
catch (ErrorMessage.WrappedException e)
{
return new HeaderExtractionResult.Error((ProtocolException) e.getCause(), e.getStreamId(), bodyLength);
}
}
public static abstract class HeaderExtractionResult