this.dataIs.read(valAsBytes);
ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(valAsBytes));
return ois.readObject();
}
catch (EOFException ex) {
throw new MessageEOFException(ME + ".readObject: " + ex.getMessage(),
ErrorCode.USER_MESSAGE_INVALID.getErrorCode());
}
catch (ClassNotFoundException ex) {
throw new XBException(ex, "readObject: the class was not found");
}