315316317318319320321322
{ throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
332333334335336337338339
345346347348349350351352
{ return dis.read(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
358359360361362363364365
{ return dis.read(value, 0, length); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
370371372373374375376377
{ dos.writeBoolean(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
382383384385386387388389
{ dos.writeByte(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
394395396397398399400401
{ dos.writeShort(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
406407408409410411412413
{ dos.writeChar(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
418419420421422423424425
{ dos.writeInt(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
430431432433434435436437
{ dos.writeLong(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }