We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ef74a commit a97965dCopy full SHA for a97965d
src/main/java/org/java_websocket/WebSocketImpl.java
@@ -417,7 +417,7 @@ private void decodeFrames(ByteBuffer socketBuffer) {
417
throw e;
418
} catch (Error e) {
419
log.error("Closing web socket due to an error during frame processing");
420
- Exception exception = new Exception(e.getMessage());
+ Exception exception = new Exception(e);
421
wsl.onWebsocketError(this, exception);
422
close(CloseFrame.UNEXPECTED_CONDITION, exception.getMessage());
423
}
0 commit comments