throw ioex;
}
}
public Object deserialize(BufferInput in) throws IOException {
PofBufferReader reader = new PofBufferReader(in, this);
try {
return reader.readObject(-1);
} catch (RuntimeException e) {
IOException ioex = new IOException(e.getMessage());
ioex.initCause(e);
throw ioex;
}