assertNotNull("Returned value is null", returnValue);
assertEquals("Invalid returned value,", 234, returnValue.getIntValue());
logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
+ returnValue.getIntValue());
TaggedObject exception = reply.getNextValueAsTaggedObject();
assertNotNull("Returned exception is null", exception);
assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0);
assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.tag
, JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG)
, JDWPConstants.Tag.getName(exception.tag));