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) {
488489490491492493494495496
{ reliable = false; } else { throw new MessagingJMSException("Delivery mode must be either DeliveryMode.PERSISTENT " + "or DeliveryMode.NON_PERSISTENT"); } }