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); } }
442443444445446447448449
{ dos.writeFloat(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
454455456457458459460461
{ dos.writeDouble(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
466467468469470471472473
{ dos.writeUTF((String)value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
478479480481482483484485
{ dos.write(value, 0, value.length); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
490491492493494495496497
{ dos.write(value, offset, length); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
545546547548549550551552
throw new MessageFormatException("Invalid object for properties"); } } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
286287288289290291292293294295296
{ context = initialContext.lookup(contextName); if (!(context instanceof Context)) { throw new MessagingJMSException(contextName + " is already bound " + " and is not a JNDI context!"); } } catch(NameNotFoundException e) {