switch (replyPacket.errorCode()) {
case JdwpReplyPacket.INVALID_THREAD:
throw new ObjectCollectedException();
}
defaultReplyErrorHandler(replyPacket.errorCode());
DataInputStream replyData = replyPacket.dataInStream();
// remove the thread status reply
readInt("thread status", threadStatusMap(), replyData); //$NON-NLS-1$
int suspendStatus = readInt(
"suspend status", suspendStatusStrings(), replyData); //$NON-NLS-1$
boolean result = suspendStatus == SUSPEND_STATUS_SUSPENDED;