*/
@Override
public Object decodeObject(final byte[] in) throws IOException {
Object obj = null;
ByteArrayInputStream bais = null;
HessianInput input = null;
try {
bais = new ByteArrayInputStream(in);
input = new HessianInput(bais);
input.startReply();
obj = input.readObject();
input.completeReply();
}
catch (final IOException ex) {
throw ex;
}
catch (final Throwable e) {