ptupitsyn commented on code in PR #7626:
URL: https://github.com/apache/ignite-3/pull/7626#discussion_r2827783099
##########
modules/api/src/main/java/org/apache/ignite/marshalling/ByteArrayMarshaller.java:
##########
@@ -55,7 +55,7 @@ static <T> ByteArrayMarshaller<T> create() {
}
}
- throw new UnsupportedObjectTypeMarshallingException(object.getClass());
+ throw new UnsupportedObjectTypeMarshallingException(object.getClass()
+ " is not serializable.");
Review Comment:
```suggestion
throw new
UnsupportedObjectTypeMarshallingException(object.getClass() + " must be
Serializable to be used with ByteArrayMarshaller.");
```
--
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]