* @exception MessageNotReadableException If the message body is write-only.
* @exception JMSException If an exception occurs while reading the bytes.
*/
public int readUnsignedShort() throws JMSException {
if (! RObody)
throw new MessageNotReadableException("Can't read the message body as"
+ " it is write-only.");
try {
return inputStream.readUnsignedShort();
} catch (Exception e) {
JMSException jE = null;