isapego commented on code in PR #2317:
URL: https://github.com/apache/ignite-3/pull/2317#discussion_r1263486431
##########
modules/client-handler/src/main/java/org/apache/ignite/client/handler/ClientInboundMessageHandler.java:
##########
@@ -405,21 +408,25 @@ private void writeErrorCore(Throwable err,
ClientMessagePacker packer) {
packer.packInt(INTERNAL_ERR);
}
+ // Class name and message.
packer.packString(err.getClass().getName());
+ packer.packString(err.getMessage());
Review Comment:
Argument of `packString` method should probably be marked as `@Nullable`. Or
do we use those in Ignite 3?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]