We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af2f4bf commit 4cf195fCopy full SHA for 4cf195f
test/hotspot/jtreg/vmTestbase/nsk/share/jpda/SocketConnection.java
@@ -517,7 +517,9 @@ public Object readObject() {
517
try {
518
return doReadObject();
519
} catch (EOFException e) {
520
- return null;
+ e.printStackTrace(logger.getOutStream());
521
+ throw new Failure("Caught EOFException while reading an object from " + name + " connection."
522
+ + " Check if debuggee process exited prematurely (crashed or killed).\n\t");
523
} catch (Exception e) {
524
e.printStackTrace(logger.getOutStream());
525
throw new Failure("Caught Exception while reading an object from " + name + " connection:\n\t" + e);
0 commit comments