KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > client > JMSUndeliverableException


1 package com.ubermq.jms.client;
2
3 /**
4  * Indicates that a message publish operation has failed
5  * because one of the recipients actively rejected it.<P>
6  *
7  * This exception is used in conjunction with the UberMQ
8  * specific <code>GUARANTEED_PROCESSING</code> delivery mode.<P>
9  *
10  * @see com.ubermq.jms.client.DeliveryMode
11  */

12 public class JMSUndeliverableException
13     extends javax.jms.JMSException JavaDoc
14 {
15     /**
16      * Constructs an undeliverable exception.
17      *
18      * @param sz some text
19      */

20     public JMSUndeliverableException(String JavaDoc sz)
21     {
22         super(sz);
23     }
24 }
25
Popular Tags