public void writeDouble(double value) throws JMSException {
setterCheck("writeDouble");
try {
this.dataOs.writeDouble(value);
} catch (IOException ex) {
throw new JMSException(ME + ".writeDouble: " + ex.getMessage(),
ErrorCode.USER_ILLEGALARGUMENT.getErrorCode());
}
}