in = new ObjectInputStream(conn.strm);
try {
contents = (jpvmBufferElementContents)in.readObject();
}
catch (ClassNotFoundException cnf) {
throw new jpvmException("jpvmBufferElement, " +
"recv - can't find class "+
"jpvmBufferElementContents");
}
}
catch (IOException ioe) {
jpvmDebug.note("jpvmBufferElement, " +
"recv - i/o exception");
throw new jpvmException("jpvmBufferElement, " +
"recv - i/o exception");
}
}