rymurr commented on a change in pull request #7815:
URL: https://github.com/apache/arrow/pull/7815#discussion_r458679661
##########
File path:
java/plasma/src/main/java/org/apache/arrow/plasma/exceptions/PlasmaOutOfMemoryException.java
##########
@@ -22,11 +22,11 @@
*/
public class PlasmaOutOfMemoryException extends RuntimeException {
- public PlasmaOutOfMemoryException() {
+ public PlasmaOutOfMemoryException(String message) {
super("The plasma store ran out of memory.");
}
- public PlasmaOutOfMemoryException(Throwable t) {
+ public PlasmaOutOfMemoryException(String message, Throwable t) {
Review comment:
Same here
##########
File path:
java/plasma/src/main/java/org/apache/arrow/plasma/exceptions/PlasmaOutOfMemoryException.java
##########
@@ -22,11 +22,11 @@
*/
public class PlasmaOutOfMemoryException extends RuntimeException {
- public PlasmaOutOfMemoryException() {
+ public PlasmaOutOfMemoryException(String message) {
Review comment:
Shouldn't we pass the string somewhere? eg add it to the original
message?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]