KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.ubermq.jms.client;
2
3 /**
4  * An extension of JMSException to indicate that a Java synchronization
5  * operation has been interrupted.
6  */

7 public class JMSInterruptedException
8     extends javax.jms.JMSException JavaDoc
9 {
10     InterruptedException JavaDoc ie;
11     public JMSInterruptedException(InterruptedException JavaDoc ie)
12     {
13         super(ie.toString());
14         this.ie = ie;
15     }
16 }
17         
18
Popular Tags