243244245246247248249250251252253
{ return dis.readChar(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
260261262263264265266267268269270
{ return dis.readInt(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
277278279280281282283284285286287
{ return dis.readLong(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
294295296297298299300301302303304
{ return dis.readFloat(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
311312313314315316317318319320321
{ return dis.readDouble(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
328329330331332333334335336337338
{ return dis.readUTF(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
177178179180181182183184185
else throw new MessageFormatException("Invalid conversion"); } catch (IndexOutOfBoundsException e) { throw new MessageEOFException(""); } }
206207208209210211212213
240241242243244245246247
263264265266267268269270